Sort 0 1 2 Problem Statement
Given an integer array arr
of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.
Input:
The first line contains an integer 'T' representing the number of test cases. Each test case consists of two lines. The first line contains an integer 'N', the size of the array. The second line contains 'N' space-separated integers, the elements of the array.
Output:
For each test case, output the sorted array as space-separated integers in a new line.
Example:
Input:
2
5
0 2 1 2 0
3
2 1 0
Output:
0 0 1 2 2
0 1 2
Constraints:
- 1 ≤ T ≤ 10
- 1 ≤ N ≤ 5 * 105
- 0 ≤ arr[i] ≤ 2
- Time Limit: 1 sec
Note:
Try to solve the problem using a single scan over the array. You need to modify the array in-place and do not return anything.

AnswerBot
4mo
Sort an array of 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.
Iterate through the array and swap elements based on the valu...read more
Charan Singh
1y
function sort0_1_2(arr) { let current = 0; let zeroPos = 0; let twoPos = arr.length - 1; while (current <= twoPos) { if (arr[current] === 0) { [arr[current], arr[zeroPos]] = [arr[zeroPos], arr[current...read more
Help your peers!
Add answer anonymously...
Deloitte Software Developer interview questions & answers
A Software Developer was asked 6mo agoQ. What is MVC and explain its pattern?
A Software Developer was asked 7mo agoQ. Given a string, determine whether it is a palindrome, considering only alphanume...read more
A Software Developer was asked 7mo agoQ. Given two strings s and t, return true if t is an anagram of s, and false otherw...read more
Popular interview questions of Software Developer
A Software Developer was asked 6mo agoQ1. What is MVC and explain its pattern?
A Software Developer was asked 7mo agoQ2. Given a string, determine whether it is a palindrome, considering only alphanume...read more
A Software Developer was asked 7mo agoQ3. Given two strings s and t, return true if t is an anagram of s, and false otherw...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

