Find Key: You are provided with 3 numbers : input1, input2 and input 3. Each of these are four digit numbers within the range >=1000 and <=9999 j.e. 1000 <= input1 <= 9999 1000 <= input <= 9999 1000 <= input <= 9999 You are expected to find the Key using the below formula - Key = [largest digit in the thousands place of all three numbers] [largest digit in the hundreds place of all three numbers] [largest digit in the tens place of all three numbers] [largest digit in the units place of all three numbers] For e..g. if input1 = 3521. input 2=2452. input 3=1352, then Key = [1][3][2][1]= 1321 Assuming that the 3 numbers are passed to the given function, complete the function to find and return the key
Answers
Answered by
5
Explanation:
Mark me as Brainlist answer
Similar questions