Tip 1: Build at least 3 projects
Tip 2: Prepare core subjects
Tip 3: Start solving coding problems
Tip 1: Prepare ATS friendly resume
Tip 2: Add at least 3 projects



1. If 'X' is not found in the array, return 0.
2. The given array is sorted in non-decreasing order.



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Asked about all the projects, core subjects like OS, CN, DBMS, SQL, Data structures, and Algorithms
1. Asked questions on SQL queries
2. Types of database

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?