mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 08:54:07 +00:00
10 lines
139 B
C++
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);
|
|
}; |