Skip to content

Instantly share code, notes, and snippets.

View jhamukesh998's full-sized avatar
🥽
Googling

Mukesh Jha jhamukesh998

🥽
Googling
  • Tempe, Arizona
View GitHub Profile
@devanshdalal
devanshdalal / mianjing.txt
Last active March 19, 2022 02:04
A good set of programming questions, to make your hands dirty! Please provide more questions in comments. I will add them
Additional Questions from Career-cup
Company selected Google,
Sorted by most comments
1.Partition integer array respect to zero, i.e. negative ... 0 ... positive, keep relative order
E.g. -1 1 3 -2 2 => -1 -2 1 3 2.
2. Search in 2D matrix,
Given each row and column sorted, or given for each (i,j) A[i][j] < A[i][j+1] & A[i][j] < A[i+1][j]