Skip to content

Instantly share code, notes, and snippets.

View tjago's full-sized avatar

Tomek Jagodowski tjago

View GitHub Profile
@tjago
tjago / LinkedListMerge.java
Created May 13, 2025 21:59
Exercise to Merge elements of List2 on List1 on specified positions start and end
class LinkedList {
int data;
LinkedList next;
LinkedList(int num) { this.data = num; }
LinkedList(int num, LinkedList next) {
this.data = num;
this.next = next;
}