Open In App

Omuni (Arvind Internet) Interview Experience for SDE 2

Improve
Improve
Like Article
Like
Save
Share
Report

I was directly reached out by the recruiter and she was very polite.

She scheduled the interview in first round and it was a coding round and the interviewer was asking questions from GeeksforGeeks.

The interviewer asked 3 coding questions:

Input: 
arr = [1, 2, 3, 4, 5, 6, 7, 8] 
k = 5 
Output: 
[5, 4, 3, 2, 1, 8, 7, 6]

For example, if first list is 5->7->17->13->11 and second is 12->10->2->4->6, the first list should become 5->12->7->10->17->2->13->4->11->6 and second list should become empty. The nodes of second list should only be inserted when there are positions available. For example, if the first list is 1->2->3 and second list is 4->5->6->7->8, then first list should become 1->4->2->5->3->6 and second list to 7->8.

I was not able to solve all the questions, and got rejected. Hope this helps


Last Updated : 13 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads