Skip to content

Commit 7430c70

Browse files
committed
Runtime: 2497 ms (Top 5.55%) | Memory: 83.5 MB (Top 16.67%)
1 parent 960b7a2 commit 7430c70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/P/People Whose List of Favorite Companies Is Not a Subset of Another List/People Whose List of Favorite Companies Is Not a Subset of Another List.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 2497 ms (Top 5.55%) | Memory: 83.5 MB (Top 16.67%)
12
var peopleIndexes = function(favoriteCompanies) {
23
let arr = favoriteCompanies
34
let len = arr.length
@@ -17,4 +18,4 @@ var peopleIndexes = function(favoriteCompanies) {
1718
if(!isSubset) ret.push(i)
1819
}
1920
return ret
20-
};
21+
};

0 commit comments

Comments
 (0)