Skip to content

Instantly share code, notes, and snippets.

@romyilano
Last active February 14, 2019 14:14
Show Gist options
  • Save romyilano/30c91f5a3b5ba5997c93111f6202f133 to your computer and use it in GitHub Desktop.
Save romyilano/30c91f5a3b5ba5997c93111f6202f133 to your computer and use it in GitHub Desktop.
let head = ListNode(1)
head.next = ListNode(5)
head.next?.next = ListNode(42)
var runner = head
while let nextNode = runner.next {
runner = nextNode
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment