C Java Python2 Min Read LetuscrackonJune 8, 2024 Reduce Array – Remove Odd The program must accept an array of N even integers as the input. The program must print the output based on the following…
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…
C1 Min Read LetuscrackonJune 8, 2024 Sum of Unique Elements in the Array The program must accept a positive integer array of size N as the input. The programmust print the sum of unique elements in the array as the…
Python2 Min Read LetuscrackonJune 7, 2024 Array Increment/Decrement Pattern The program must accept an array of N integers and an integer T as the input. The program must modify the array T times…
C Python1 Min Read LetuscrackonJune 7, 2024 Check Sorted Array – Descending Order The program must accept N integer values and check if they are sorted in descending order or not. Input : 5834 700 53 45 12 Output : yes Here…