Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 373 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 373 Bytes

clean-code-assignment

Given an array with N distinct elements, convert the given array to a reduced form where all elements are in range from 0 to N-1. The order of elements is same, i.e., 0 is placed in place of smallest element, 1 is placed for second smallest element, N-1 is placed for largest element.

Input:

Array = {5, 10, 40, 30, 20}

Output:

0 1 4 3 2