one fable-low hijack cell
pair island / java
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked island (first-offered)
· classifierA
· tiernone
response (200 chars)
# Number of Islands — Java Solution
Classic LeetCode problem (#200): given a 2D grid of `'1'` (land) and `'0'` (water), count the islands.
## DFS Approach
```java
public class Solution {
public
neighbors