Skip to content

Commit 8c0b5a8

Browse files
Add Solution JavaScript
1 parent df61622 commit 8c0b5a8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

May-LeetCoding-Challenge/13-Remove-K-Digits/Remove-K-Digits.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ var removeKdigits = function(num, k) {
2222
while(k>0){
2323
monotone_stack.pop();
2424
k--;
25-
//console.log(monotone_stack+" --- "+k);
2625
}
2726
while(i<num.length){
2827
monotone_stack.push(num[i]);

0 commit comments

Comments
 (0)