This was the first round with Intuit was asked two questions. I felt their interview was a little on the easier side.
You have three colors(Blue,green,red) represented by numbers (0,1,2).
You are given an array arrange the colors in blue green and red order.
ex: [1,1,1,0,0,0,2,0,0,2] o/p : [0,0,0,0,01,1,1,2,2]
Search in a rotated array.
https://leetcode.com/problems/search-in-rotated-sorted-array/.