Leetcode-463. Island Perimeter

—Easy https://leetcode.com/problems/island-perimeter/    Code:   class Solution: def islandPerimeter(self, grid) : sum_count = 0 if len(grid) == 0: return 0 m =
相关文章
相关标签/搜索