mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 12:34:07 +00:00
11 lines
267 B
C++
11 lines
267 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<vector<int>> matrix = {{1, 3, 5, 7}, {10, 11, 16, 20}, {23, 30, 34, 60}};
|
|
int target = 3;
|
|
bool answer = true;
|
|
Solution soln;
|
|
cout << "Searched matrix correctly? " << soln.test(matrix, target, answer) << endl;
|
|
return 0;
|
|
} |