Python1 Min Read LetuscrackonJune 9, 2024 Maximum Repeating Count Given an array of integers of length N, the program must find the value which repeats in maximum number of times and print the number. In case…
Hackerrank Python1 Min Read LetuscrackonJune 9, 2024 Average Salary Excluding the Minimum and Maximum Salary You are given an array of unique integers salary where salary[i] is the salary of the ith employee.…
C1 Min Read LetuscrackonJune 9, 2024 Stock Buy & Sell Multiple Times – Maximum Profit Example Input/Output 1: Input:10 5 8 10 12 9 6 14 21 15 10 Output:22
C1 Min Read LetuscrackonJune 9, 2024 Stock Buy & Sell Once – Maximum Profit Input:7 50 100 40 60 70 50 80Output:50
C Java Python1 Min Read LetuscrackonJune 8, 2024 Maximum Value – Add or Product The program must accept N integers as the input. For each integer X among the given N integers, the program must print the…
Python1 Min Read LetuscrackonJune 8, 2024 Array Maximum Sum Divisible By N n array of numbers separated by space will be passed as input. A number N is also passed as input. The program has to print the maximum sum of…
C Python1 Min Read LetuscrackonJune 7, 2024 Maximum Length – S1 and S2 The program must accept two string values S1 and S2 as the input. The program must print the string having the maximum…
Python1 Min Read LetuscrackonJune 7, 2024 Maximum Number of Balls – Triangle Maximum Number of Balls – Triangle: In a game, there are (N*(N+1))/2 boxes arranged as a triangle based on the following…