find-missing-and-repeated-values 1.0.0
Find Missing and Repeated Values
Loading...
Searching...
No Matches
main.cpp File Reference
#include <bits/stdc++.h>
Include dependency graph for main.cpp:

Go to the source code of this file.

Data Structures

class  Solution
 

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 40 of file main.cpp.

41{
42 vector<vector<int>> grid = {{1, 3}, {2, 2}};
43 vector<int> answer = Solution().findMissingAndRepeatedValues(grid);
44 cout << "[" << answer[0] << ", " << answer[1] << "]\n";
45 return 0;
46}
vector< int > findMissingAndRepeatedValues(vector< vector< int > > &grid)
Definition main.cpp:8

References Solution::findMissingAndRepeatedValues().