Posted on February 25, 2020 Leave a Comment
Anagram word search problem Get derivative for Term Non Consecutive sequence with the largest sum Ransome note
Posted on June 4, 2019 Leave a Comment
Problem: Find the number that has the highest frequency in a list of integers. Input: 1,6,2,1,6,1 Output: 1 //because 1 occurs 3 times in the list Option 1: Use Hashmap to iterate list Option 2: Use wrapper class with compare to sort wrapper Option 3: Using buckets to group index of frequencies together