Links to refer to:
https://blog.usejournal.com/500-data-structures-and-algorithms-practice-problems-35afe8a1e222
https://leetcode.com/problemset/top-interview-questions/?difficulty=Easy
My prep review material
Day 1: 24-02-20
https://www.geeksforgeeks.org/program-to-find-whether-a-no-is-power-of-two/
https://www.geeksforgeeks.org/find-second-largest-element-array/
Interview Prep
https://www.sanfoundry.com/c-mcqs-string-operations/
https://www.analyticsvidhya.com/blog/2017/09/30-questions-test-k-nearest-neighbors-algorithm/
https://www.sanfoundry.com/data-science-questions-answers-raw-processed-data/
https://www.sanfoundry.com/java-mcqs-class-fundamental-declaring-objects/
Day 2: 27-02-20
-
Reversing the words in a given string
-
Counting the number of set bits in an integer
Day 3: 29-02-20
- Repeated integer sum of digits
https://www.geeksforgeeks.org/finding-sum-of-digits-of-a-number-until-sum-becomes-single-digit/
- Number of Occurences of 2 as a digit in numbers from 0 to n
https://www.geeksforgeeks.org/number-of-occurrences-of-2-as-a-digit-in-numbers-from-0-to-n/
Day 4: 01-03-20
- Two Sum Problem
https://algodaily.com/lessons/using-the-two-pointer-technique
- Sum of all numbers present in a string
https://www.geeksforgeeks.org/calculate-sum-of-all-numbers-present-in-a-string/
Day 5: 16-03-20
- Segregate positive and negative numbers in an array in O(n)
https://www.youtube.com/watch?v=UV_NtBamWMc
- Max of Min pairs
https://www.geeksforgeeks.org/maximum-sum-of-minimums-of-pairs-in-an-array/
https://algodaily.com/challenges/max-of-min-pairs
Day 6 : 20-03-20
-
QuickSort
-
Recursive Bubble Sort
Day 7 : 25-03-20
- Move all zeroes present in an array to the end
https://www.techiedelight.com/move-zeros-present-array-end/
Day 8 : 26-03-20
- Segregate odd and even numbers in an array
https://www.geeksforgeeks.org/segregate-even-and-odd-numbers/