10 lines
139 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int firstUniqChar(string s);
bool test(string s, int answer);
};