C1 Min Read LetuscrackonDecember 17, 2025 Robot – Stair Climbing There are N stairs to be climbed in a building. A robot can take only S different leaps each containing certain distinct…
C Java Python2 Min Read LetuscrackonDecember 13, 2025 Split & Check Prime Integers The program must accept an integer N as the input. The program must split the integer N into two parts and print them if both are prime…
C Java Python2 Min Read LetuscrackonDecember 12, 2025 Matrix – Same Characters The program must accept a character matrix of size NxN as the input. The program must print YES if all the characters in the diagonals (both…
C1 Min Read LetuscrackonDecember 7, 2025 2D Matrix – Elements Adjacent Sum Given a matrix of R rows and C columns, for each element print the sum of the adjacent elements.Input Format:The first line contains RThe…
C Python1 Min Read LetuscrackonDecember 1, 2025 Restaurant – Lucky Numbers Discount Every day in a restaurant two numbers X and Y are considered lucky numbers. If the bill amount B is divisible by X, then X% discount is…
C Java Python1 Min Read LetuscrackonNovember 25, 2025 Arrange Alphabets – Descending Order A string S (with only LOWER case alphabets and length from 3 to 100) will be passed as input. The program should print the alphabets in the…
C Java Python1 Min Read LetuscrackonOctober 15, 2025 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 LetuscrackonOctober 2, 2025 Add Numbers – Base N Two numbers X and Y are provided with reference to base N. Add the numbers and print their sum with reference to base 10. Input Format: First…
Cognizant Python1 Min Read LetuscrackonJuly 1, 2025 Function add – Two or more Integers Function add – Two or more Integers: The program must accept five integers a, b, c, d and e as the…
C Java Kickstart Python1 Min Read LetuscrackonMay 5, 2025 Add Three Numbers Accept three numbers and print their sum. Example Input/Output 1:Input:5 2 4 Output:11 Example Input/Output 2:Input:25 15 10 Output:50 Python…