You are viewing a single comment's thread. Return to all comments →
Here is my Python solution!
def gridChallenge(grid): grid = [sorted(list(row)) for row in grid] for col in range(len(grid[0])): for row in range(1, len(grid)): if grid[row][col] < grid[row - 1][col]: return "NO" return "YES"
Seems like cookies are disabled on this browser, please enable them to open this website
Grid Challenge
You are viewing a single comment's thread. Return to all comments →
Here is my Python solution!