#interview
Read more stories on Hashnode
Articles with this tag
Q1 19. Remove Nth Node From End of List Medium. Linked list, two pointers Use a dummy node to find the node before the target node. class Solution: ...