CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Member-only story

Solving Graph Problems — Number of Islands

Kumar Shubham
CodeX
Published in
9 min readJul 7, 2021

--

Photo by Tom Winckels on Unsplash

1. Number of Islands

Problem Statement

Input: grid = [
["1","1","1","1","0"],
["1","1","0","1","0"],
["1","1","0","0","0"],
["0","0","0","0","0"]
]
Output: 1
Explanation: As we can see, all the 1’s are connected either horizontally or vertically, so have only a single island group.
Input: grid = [
["1","0","0","0","0"],
["1","0","0","0","0"],
["0","0","1","0","0"],
["0","0","0","1","1"]
]
Output: 3
Explanation: Here, we have 3 island groups. One formed by the 1’s at indices (0,0) and (1,0). The Second is formed by a single 1 present at (2,2). The third one is formed…

--

--

CodeX
CodeX

Published in CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Kumar Shubham
Kumar Shubham

Written by Kumar Shubham

SDE @ Wells Fargo | Ex-SWE Intern @ ByteLearn | Student @ IIT BHU | Web Dev | DSA | https://www.linkedin.com/in/shubham1710

Responses (2)