grid-game 1.0.0
Grid Game
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 31 of file main.cpp.

32{
33 vector<vector<int>> grid = {{2,5,4}, {1,5,1}};
34 cout << Solution().gridGame(grid) << '\n';
35 return 0;
36}
long long gridGame(vector< vector< int > > &grid)
Definition main.cpp:8

References Solution::gridGame().