Skip to content

Commit c2965cb

Browse files
committed
Runtime: 117 ms (Top 20.64%) | Memory: 42.2 MB (Top 53.97%)
1 parent ca483dd commit c2965cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/algorithms/C/Camelcase Matching/Camelcase Matching.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 117 ms (Top 20.64%) | Memory: 42.2 MB (Top 53.97%)
12
var camelMatch = function(queries, pattern) {
23
function camelMatch(q, p){
34
let qlist=[]
@@ -14,6 +15,6 @@ var camelMatch = function(queries, pattern) {
1415
}
1516
return pi===p.length
1617
}
17-
18+
1819
return queries.map(q=>seqMatch(q, pattern))
19-
}
20+
}

0 commit comments

Comments
 (0)