Skip to content

Commit f77f588

Browse files
07subhadipidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 5f7be59 commit f77f588

File tree

1 file changed

+1
-1
lines changed
  • solution/2400-2499/2416.Sum of Prefix Scores of Strings

1 file changed

+1
-1
lines changed

solution/2400-2499/2416.Sum of Prefix Scores of Strings/Solution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Trie {
3333
* @param {string[]} words
3434
* @return {number[]}
3535
*/
36-
var sumPrefixScores = function(words) {
36+
var sumPrefixScores = function (words) {
3737
const trie = new Trie();
3838
for (const w of words) {
3939
trie.insert(w);

0 commit comments

Comments
 (0)