(value)
| 1 | var LinkedList = function(value) { |
| 2 | this.value = value; |
| 3 | this.next = null; |
| 4 | }; |
| 5 | |
| 6 | var partition = function(head, partition) { |
| 7 | // approach is to create left and right threads |
nothing calls this directly
no outgoing calls
no test coverage detected