Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 441 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 441 Bytes

Path Sum II

Attempts:

# Time Complexity Space Complexity Description Submission Runtime (4 trials) Memory (4 trials)
1 O(n) O(n) Use recursive function to do DFS, build run sum and run path during the travel and get the result list Submission 43 ms 21.7 MB