Skip to content

Latest commit

 

History

History

Leetcode200

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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