Skip to content

Instantly share code, notes, and snippets.

@froggomad
Last active May 11, 2021 19:31
Show Gist options
  • Save froggomad/c32d9b43bc054115b3250ed7e340b38e to your computer and use it in GitHub Desktop.
Save froggomad/c32d9b43bc054115b3250ed7e340b38e to your computer and use it in GitHub Desktop.
extension ListNode {
func forEach() {
var current: ListNode? = self
while current != nil {
print(current!.val)
current = current!.next
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment