Skip to content

Instantly share code, notes, and snippets.

View parthamk's full-sized avatar
🎯
Focusing

Partha Mallick parthamk

🎯
Focusing
View GitHub Profile
@parthamk
parthamk / LinkedList_New.java
Created September 17, 2022 19:29
Linked list: implement, addition, deletion, deletion from a specific position
public class LinkedList_New {
static Node head;
static Node tail;
static class Node{
int value;
Node next;
Node(int d){ value = d; }
}