```class ListNode(var v: Int = 0) { var next: Li...
# stdlib
a
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