Linked ListsLinked ListsRemove DuplicatesProblem 🤔 Write code to remove duplicates from an unsorted linked list. Example 1 Input: 1 ->…Assaf ElovicJanuary 09, 2021 7 min
Remove Duplicates from Sorted ListLinked ListsRemove Duplicates from Sorted ListProblem 🤔 Write code to remove duplicates from a sorted linked list. Example 1 Input: 1 -> 2 ->…Assaf ElovicJanuary 09, 2021 7 min
Single NumberHash TablesSingle NumberProblem 🤔 Given an array of integers, find if the array contains any duplicates. Your function…Assaf ElovicDecember 07, 2020 8 min
Max Consecutive OnesArraysMax Consecutive OnesProblem 🤔 Given a binary array, find the maximum number of consecutive 1s in this array, or in…Assaf ElovicDecember 05, 2020 10 min
Even Numbers of DigitsArraysFind Numbers with Even Numbers of DigitsProblem 🤔 Given an array nums of integers, return how many of them contain an even number of digits…Assaf ElovicDecember 05, 2020 7 min
Delete Node From BSTBinary Search TreesDelete Node from Binary Search TreeProblem 🤔 Given a root node reference of a BST and a key, delete the node with the given key in the…Assaf ElovicDecember 05, 2020 14 min