Skip to content

Instantly share code, notes, and snippets.

View rahuliation's full-sized avatar
🎯
Focusing

Rahul Rahman rahuliation

🎯
Focusing
View GitHub Profile
@rahuliation
rahuliation / Solution.md
Last active October 3, 2023 13:51
Solution

Solved with Javascript and took main as an initial function

Solution to the Problem 1: Merge Two Sorted Lists

function mergeLinkList(l1, l2) {
    if (!l1) return l2;
    if (!l2) return l1;

    if (l1.val < l2.val) {