File tree 3 files changed +0
-7
lines changed
3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 8
8
9
9
// Read the users code and examples from the Leetcode problem page
10
10
function getCode ( ) {
11
- console . log ( 'getting code' ) ;
12
-
13
-
14
11
let textArray = [ ]
15
12
16
13
// Add the test cases & examples
@@ -33,7 +30,6 @@ function getCode() {
33
30
}
34
31
}
35
32
36
- console . log ( 'heres the text array' , textArray ) ;
37
33
return textArray ;
38
34
}
39
35
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ function showExamples() {
13
13
let preTags = examples . getElementsByTagName ( 'pre' ) ;
14
14
if ( preTags ) {
15
15
for ( let tag of preTags ) {
16
- console . log ( tag ) ;
17
16
tag . style . display = showExamples ? 'block' : 'none' ;
18
17
}
19
18
}
Original file line number Diff line number Diff line change @@ -173,8 +173,6 @@ function addCompanyProblems(sortMethod: string) {
173
173
solutions . length = 0 ;
174
174
solutions . push ( ...allSolutions ) ;
175
175
176
- console . log ( solutions ) ;
177
-
178
176
// Rebuild the table with sorted solutions
179
177
rebuildTable ( ) ;
180
178
} ) ;
You can’t perform that action at this time.
0 commit comments