Java1 Min Read LetuscrackonDecember 20, 2025 Subtract Largest Integer The program must accept N positive integers as the input. The program must subtract the integers from the largest integer among the N integers…
Java2 Min Read LetuscrackonDecember 18, 2025 Solve Sudoku The program must accept an integer matrix of size 9×9 representing a sudoku as the input. The sudoku matrix contains the…
Java2 Min Read LetuscrackonDecember 15, 2025 Sudoku Validity Given a 9×9 sudoku the program must evaluate it for its correctness. The program must check both the sub matrix correctness and the entire…
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…
Java1 Min Read LetuscrackonDecember 10, 2025 Count of Consonants in a String Given a string,program must print the count of Consonants in a string Example input/output 1: Input:abcde output:3 Example input/output 2:…
Java1 Min Read LetuscrackonDecember 9, 2025 Betting game – Diceroll In a betting game involving the roll of a dice, Sandeep gains Rs.X if an odd number turns up and he loses Rs.Y is an even number turns up. The…
Java1 Min Read LetuscrackonDecember 9, 2025 Next Number Palindrome Given a number N, the program must print the next palindromic number P. Boundary Conditions:9 < N < 100000 Input Format:First…
Java1 Min Read LetuscrackonDecember 6, 2025 Convert rupees to paise A floating point value F indicating the amount in rupees is passed as input. The program must print the corresponding value in paise.Note: 1…
Java1 Min Read LetuscrackonDecember 6, 2025 Reverse Number sign An integer value N is passed as the input. The program must reverse the sign of N and print -N as the output. Input Format:The first line…