PLS CHECK THE CODE ITS FAILING FIRST TWO CASES
Consider input:
5 2
1 2 3 4 5
Expected Output:
2
4
3
5
1
Your o/p:
2
4
1
3
5
Crosscheck the approach and the logic from here: Playing with cards
You can refer this implementation
Consider input:
5 2
1 2 3 4 5
Expected Output:
2
4
3
5
1
Your o/p:
2
4
1
3
5
Crosscheck the approach and the logic from here: Playing with cards
You can refer this implementation