Skip to content

Commit 4340ddb

Browse files
committed
🚧 [198] Logging ...
1 parent 3ff3266 commit 4340ddb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

198/my_solution.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ const rob = (nums) => {
2525

2626
console.log("tmpList")
2727
console.log(Math.max(...tmpList))
28+
console.log(tmpList[tmpList.length - 1])
2829
return;
2930
};
3031
// rob([1, 2])
3132
// rob([2, 1, 1, 2])
32-
rob([2, 3, 1, 2, 1, 1, 2])
33+
// rob([2, 3, 1, 2, 1, 1, 2])
34+
// rob([2, 7, 9, 3, 1])
35+
rob([1, 2, 3, 1])
3336

3437
// [2,1,1,2]
3538
// Use Testcase

0 commit comments

Comments
 (0)