Skip to content

Instantly share code, notes, and snippets.

import java.util.NoSuchElementException;
// singly linkedlist
class LinkedList {
class Node {
private int val;
private Node next;
public Node(int value, Node nextNode) {
val = value;
next = nextNode;