Search Element in a Rotated Sorted Array: There is an integer array nums sorted in ascending order (with distinct values). Given the array nums after the possible rotation and an integer target, return the index of the targetifit is in nums, or-1 if it is not in nums. We need to search a given element in a rotated sorted array.
Don't remember the question properly.
Round 3: Technical Interview
You have been given two strings. You have to check whether the two strings are anagrams of each other or not.
Detailed discussion about the projects I mentioned in my cv
Some real-life scenario questions
Coin Change Problem: We are given an array Arr with N distinct coins and a target. We have an infinite supply of each coin denomination. We need to find the number of ways we sum up the coin values to give us the target. Each coin can be used any number of times.