File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 88
99// Read the users code and examples from the Leetcode problem page
1010function getCode ( ) {
11- console . log ( 'getting code' ) ;
12-
13-
1411 let textArray = [ ]
1512
1613 // Add the test cases & examples
@@ -33,7 +30,6 @@ function getCode() {
3330 }
3431 }
3532
36- console . log ( 'heres the text array' , textArray ) ;
3733 return textArray ;
3834}
3935
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ function showExamples() {
1313 let preTags = examples . getElementsByTagName ( 'pre' ) ;
1414 if ( preTags ) {
1515 for ( let tag of preTags ) {
16- console . log ( tag ) ;
1716 tag . style . display = showExamples ? 'block' : 'none' ;
1817 }
1918 }
Original file line number Diff line number Diff line change @@ -173,8 +173,6 @@ function addCompanyProblems(sortMethod: string) {
173173 solutions . length = 0 ;
174174 solutions . push ( ...allSolutions ) ;
175175
176- console . log ( solutions ) ;
177-
178176 // Rebuild the table with sorted solutions
179177 rebuildTable ( ) ;
180178 } ) ;
You can’t perform that action at this time.
0 commit comments