Skip to content

Commit

Permalink
Update ListNode
Browse files Browse the repository at this point in the history
  • Loading branch information
xcatliu committed Feb 1, 2016
1 parent 5e5131a commit e904ab5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions structures/ListNode.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Definition for singly-linked list.

function ListNode(val) {
this.val = val;
this.next = null;
Expand Down

0 comments on commit e904ab5

Please sign in to comment.