Python LetuscrackonMarch 9, 2026 Matrix – Inside Numbers Sum A set of numbers forming a matrix N*N is passed as input. The program has to print the sum of numbers which are not along the edges. Input…
Python LetuscrackonMarch 8, 2026 N Triangles Pattern The program must accept an integer N as the input. The program must print N triangles numbered from 1 to N based…
Python LetuscrackonMarch 8, 2026 Reverse Even Integers The program must accept N integers as the input. The program must print all the even integers among the N integers in reverse order…
C LetuscrackonMarch 7, 2026 Find the count of distinct numbers A set of numbers will be passed as input. The program has to print the count of distinct numbers in it. Input Format:The first line contains…
Python LetuscrackonMarch 7, 2026 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 Python LetuscrackonMarch 6, 2026 Left Number Twice Right A set of N numbers (separated by one or more spaces) is passed as input to the program. The program must identify the count of…
Python LetuscrackonMarch 6, 2026 Print Nth term in A.P The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
Java LetuscrackonMarch 5, 2026 JAVA – Constructor – Sum and Product The main method in Hello.java is as shown below. Define the class Calculator.java by filling in the code so that the…
Python LetuscrackonMarch 5, 2026 Anagrams Count Two strings S1, S2 are passed as input to the program. The program must print the count of anagrams present in both the strings. Out of each…
Python LetuscrackonMarch 4, 2026 Remove the odd numbers A number N is passed as input. The program must remove all the odd digits in the passed number and display the number. If there are no…