C LetuscrackonDecember 13, 2025 Numbers with Unit Digit Numbers with Unit DigitGiven two positive integers A and B and a digit U, the program must print all the integers from A to B (inclusive of A…
C Java Python 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…
C LetuscrackonDecember 12, 2025 Max Streak Winning Sequence Alok is playing N round of card games with his friend Brinda. He gets postive or negative points based on whether he won or lost in a specific…
Python LetuscrackonDecember 11, 2025 Count of UpperCase Letters A string S is passed as the input. The program must print the number of upper case letters in the string S. Input Format: The first line…
C LetuscrackonDecember 11, 2025 Arithmetic Progression – Nth term The first three terms in an arithmetic progression are passed as input. A positive integer value N (where N > 3) is also passed as the…
C LetuscrackonDecember 10, 2025 2D MATRIX MODIFICATION A Matrix has R rows and C columns. Get the matrix as input and multiply the value in the cells of the matrix by a value E if it is even and…
Java 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:…
Java 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…
Java 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…
C LetuscrackonDecember 8, 2025 Identify correct operator An expression E is passed as an input to the program. The expression will contain three numbers A,B and C, one equal symbol and one of…