mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:24:07 +00:00
10 lines
205 B
C++
10 lines
205 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
string s = "kaushiknarayanravishankar";
|
|
int answer = 2;
|
|
Solution soln;
|
|
cout << "Found first unique character correctly? " << soln.test(s, answer) << endl;
|
|
return 0;
|
|
} |