周赛补题.

力扣308:

第二题:https://leetcode.cn/problems/removing-stars-from-a-string/

顺序遍历。

class Solution {
public:
    string removeStars(string s) {
        string ret;
        for (auto ch : s) {
            if (ch != '*') {
                ret += ch;
            } else {
                ret.pop_back();
            }
        }
        return ret;
    }
};

acwing66:

第二题:https://www.acwing.com/problem/content/4610/

遍历一遍找到一个符合条件的不全后的字串字串,其他都补一个大学字母。

#include
#include
#include
#include
using namespace std;
const int maxn=5e4+5;
char str[maxn];int len;
unordered_set ch;
vector vch;
int main(){
    cin>>str; len=strlen(str);
    for(int i=25;i

你可能感兴趣的:(leetcode,c++)