We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Data Structures
- Arrays
- 2D Array - DS
- Discussions
2D Array - DS
2D Array - DS
Sort by
recency
|
3648 Discussions
|
Please Login in order to post a comment
// my solution using c++
int hourglassSum(vector> arr) { int Max = INT_MIN;
for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { int sum = arr[i][j] + arr[i][j + 1] + arr[i][j + 2] + arr[i + 1][j + 1] + arr[i + 2][j] + arr[i + 2][j + 1] + arr[i + 2][j + 2]; Max=max(Max,sum); } }
return Max;
}
C# solution
Here is my soln in JavaScript. I'm sure that there is a more efficient way to do this, but this was quick and easy.
Haskell