100daysof.codes Problem: Remove Duplicates from sorted LL Leaf-Similar Trees // Remove Duplicates void remove(ListNode* &head, ListNode* &temp){ if(temp == head){ head = head -> next; temp -> next = nullptr;...
·
9 followers
Coder by Profession, Creater by Mind! -CBC(Create By Creaters.)