Skip to content

Commit 03f36df

Browse files
committed
Runtime: 175 ms (Top 77.53%) | Memory: 49.4 MB (Top 96.25%)
1 parent 99fff1f commit 03f36df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/F/Find Words That Can Be Formed by Characters/Find Words That Can Be Formed by Characters.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 175 ms (Top 77.53%) | Memory: 49.4 MB (Top 96.25%)
12
var countCharacters = function(words, chars) {
23
let arr = [];
34
loop1: for(word of words){
@@ -11,4 +12,4 @@ var countCharacters = function(words, chars) {
1112
arr.push(word);
1213
}
1314
return arr.join('').length;
14-
};
15+
};

0 commit comments

Comments
 (0)