#100 days of LeetCode
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;...
createbycreaters.com1 min read