leetcode icon indicating copy to clipboard operation
leetcode copied to clipboard

Bug Report for clone-graph

Open Hydro666 opened this issue 1 month ago • 0 comments

Bug Report for https://neetcode.io/problems/clone-graph

Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.

Test case: adjList=[[2, 3], [1, 3, 4],[1, 2, 5], [2, 5], [4, 3]] is invalid:

Image

but with spaces removed between elements of the list (but not the sub-lists) then it is valid: adjList=[[2,3],[1,3,4],[1, 2, 5],[2, 5],[4, 3]]

Image

Hydro666 avatar Nov 11 '25 07:11 Hydro666