Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 307 Bytes

readme.md

File metadata and controls

10 lines (8 loc) · 307 Bytes

Number of Islands

  1. Approach
  • Figure out whether the node that I am in is water or land. If land then continue else if water skip.
  • Time:39 ms
  • Concepts: dfs,graphs

Link to problem Leetcode Problem Number #200 STATUS : Accepted