There was an error while loading. Please reload this page.
1 parent 3f34fb6 commit 0c334a9Copy full SHA for 0c334a9
DataStructures/HashMap/Hashing/LinkedList.java
@@ -12,7 +12,6 @@ public LinkedList() {
12
13
public void insert(int data) {
14
15
-Node temp = Head;
16
Node newnode = new Node(data);
17
18
size++;
0 commit comments