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.
defhourglassSum(arr):# Write your code heremax_sum=float("-inf")foriinrange(0,4):forjinrange(0,4):top=arr[i][j]+arr[i][j+1]+arr[i][j+2]middle=arr[i+1][j+1]buttom=arr[i+2][j]+arr[i+2][j+1]+arr[i+2][j+2]hg_sum=top+middle+buttomifhg_sum>max_sum:max_sum=hg_sumreturnmax_sum
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
2D Array - DS
You are viewing a single comment's thread. Return to all comments →