Skip to content

Commit 8b2bcd3

Browse files
committed
Runtime: 97 ms (Top 35.93%) | Memory: 42.3 MB (Top 27.32%)
1 parent 43e1f91 commit 8b2bcd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/N/Number of Good Pairs/Number of Good Pairs.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 97 ms (Top 35.93%) | Memory: 42.3 MB (Top 27.32%)
12
var numIdenticalPairs = function(nums) {
23
let counter = 0;
34
let map = {};
@@ -10,4 +11,4 @@ var numIdenticalPairs = function(nums) {
1011
}
1112
}
1213
return counter;
13-
};
14+
};

0 commit comments

Comments
 (0)