DSA-CRACKER
DSA-CRACKER copied to clipboard
This is an attempt to solve 450 questions carefully curated by Love Babbar.
Results
33
DSA-CRACKER issues
Sort by
recently updated
recently updated
newest added
Code for finding middle element of a linked list My code has passed all the testcases of LeetCode.
Valid Parentheses problem easy solution .
Instead of checking if (head == NULL) and then else if (head->next == head), you could directly combine these into one check for clarity: if (head == NULL || head->next...