mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:34:07 +00:00
10 lines
205 B
C++
10 lines
205 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> nums{9, 6, 4, 2, 3, 5, 7, 0, 1};
|
|
int answer = 8;
|
|
Solution soln;
|
|
cout << "Found missing number correctly? " << soln.test(nums, answer) << endl;
|
|
return 0;
|
|
} |