Popis problému
Celý popis zadania sa nacháza – Hackerrank.
Riešenie
1 2 3 4 5 6 |
void Print(Node head) { while(head != null) { System.out.println(head.data); head = head.next; } } |
Riešenie tiež dostupné na mojom GitHub profile.