Join Slack
Powered by
```class ListNode(var v: Int = 0) { var next: Li...
# stdlib
a
asad.awadia
03/07/2018, 2:10 PM
Copy code
class ListNode(var v: Int = 0) { var next: ListNode? = null }
let's say we have this definition for a listNode [linkedList node] and then we do something like this to fill the list
2
Views
Open in Slack
Previous
Next