Python1 Min Read LetuscrackonJune 11, 2024 Odd-Even Values Difference Given a value of N positive integers, the program must print the difference between the sum of odd integers and the sum of even integers.…
C1 Min Read LetuscrackonJune 11, 2024 Minimum Difference – Mark Pairs Manisha and Ranjani are in the same class and are friends. All students in the class write N exams. In order to motivate the students, the…
Python1 Min Read LetuscrackonJune 11, 2024 Difference between a number and it's reverse The number N is passed as input. The program must print the difference between the number N and it’s reverse R. Input Format:The first…
Python1 Min Read LetuscrackonJune 10, 2024 Largest & Smallest Digits Difference A number N is passed as the input. The program must print the difference between the largest and the smallest digits in the number. Input…
Python1 Min Read LetuscrackonJune 10, 2024 Difference between sum of odd and even digits A number N is passed as input. The program must find the difference between sum of odd and even digits in the number and print the difference.…
C Python1 Min Read LetuscrackonJune 9, 2024 2D Matrix Absolute Difference Diagonals Elements Sum A Square Matrix has N rows and N columns. Get the matrix as input and find the absolute difference between the sum of the values in the two…
Python1 Min Read LetuscrackonJune 9, 2024 Difference between LCM and HCF of two numbers Two whole numbers N1 and N2 are passed as input. The program must print the difference between the LCM and HCF of these two numbers. Input…