Skip to content

Commit

Permalink
voah
Browse files Browse the repository at this point in the history
  • Loading branch information
Javohir004 committed Apr 26, 2024
1 parent 206293b commit fc8b5eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CustomLinkedList.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import java.util.Objects;

public class CustomLinkedList<E>{
public class CustomLinkedList<E>{
private Node head;
private Node last;
private int size;
Expand Down

0 comments on commit fc8b5eb

Please sign in to comment.