Skip to content

Commit

Permalink
fix(challenges): fix initial contents
Browse files Browse the repository at this point in the history
fixed: unable solve challenges without editing code outside comments
  • Loading branch information
ValeraS authored and scissorsneedfoodtoo committed Jul 8, 2018
1 parent f4d598f commit 9329543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions challenges/08-coding-interview-prep/data-structures.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"name": "index",
"contents": [
"function Stack() { ",
" collection = [];",
" var collection = [];",
" this.print = function() {",
" console.log(collection);",
" };",
Expand Down Expand Up @@ -245,7 +245,7 @@
"name": "index",
"contents": [
"function Queue () { ",
" collection = [];",
" var collection = [];",
" this.print = function() {",
" console.log(collection);",
" };",
Expand Down

0 comments on commit 9329543

Please sign in to comment.