Skip to content

Commit d29cfc2

Browse files
committed
📝 [997]
1 parent 9fedac5 commit d29cfc2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

997/gpt_solution.js

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ function findJudge(n, trust) {
2727
return -1;
2828
}
2929

30+
// I found this smarter also better in terms of memory.
3031
function findJudge2(n, trust) {
3132
const trustCounts = Array(n + 1).fill(0);
3233

0 commit comments

Comments
 (0)