Skip to content

Commit 8b84b22

Browse files
committed
Runtime: 96 ms (Top 43.16%) | Memory: 42.5 MB (Top 14.74%)
1 parent 27a1414 commit 8b84b22

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/algorithms/R/Remove Comments/Remove Comments.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 96 ms (Top 43.16%) | Memory: 42.5 MB (Top 14.74%)
12
var removeComments = function(source) {
23
let result = [];
34
let multi_line_comment = false;
@@ -38,5 +39,3 @@ var removeComments = function(source) {
3839
})
3940
return result;
4041
}
41-
42-

0 commit comments

Comments
 (0)