Skip to content

Commit

Permalink
Modify linkedList.js and linkedListCycles.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fay-jai committed Jan 24, 2015
1 parent 152b362 commit 7edb781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linkedList/linkedList.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Implement a linked list using the pseudoclassical instantiation pattern.
*
*
* Your linked list should have methods called "addToTail", "removeHead", and "contains."
*
*/
Expand Down
2 changes: 1 addition & 1 deletion linkedListCycles/linkedListCycles.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Assignment: Write a function that returns true if a linked list contains a cycle, or false if it terminates somewhere
*
* Explanation:
*
*
* Generally, we assume that a linked list will terminate in a null next pointer, as follows:
*
* A -> B -> C -> D -> E -> null
Expand Down

0 comments on commit 7edb781

Please sign in to comment.