C Java Python2 Min Read LetuscrackonOctober 17, 2025 Form Integers – Divisible by 25 The program must accept a string S representing a number. The string S contains digits, underscores and X‘s. The program…
Python1 Min Read LetuscrackonOctober 8, 2025 Array Maximum Sum Divisible By N n array of numbers separated by space will be passed as input. A number N is also passed as input. The program has to print the maximum sum of…
Python1 Min Read LetuscrackonJune 17, 2025 Binary Prefix Count – Divisible by X Binary Prefix Count – Divisible by X: The program must accept two integers N and X as the input. The program must…
Python1 Min Read LetuscrackonApril 9, 2025 Sum of Digits – Divisible by K Sum of Digits – Divisible by K: The program must accept two integers N and K as the input. The program must print…
Python1 Min Read LetuscrackonMarch 31, 2025 Four Digit Integers Divisible Four Digit Integers Divisible: The program must accept a string S containing only digits and an integer K as the input.…
Python1 Min Read LetuscrackonNovember 4, 2024 Multiple of N till divisible by X Two numbers N and X are passed as input. The program must print the multiples of N (starting from 1) and must stop when the multiple is…
Python1 Min Read LetuscrackonJune 12, 2024 Array Elements – Max Divisible by D An array of N positive integers are passed as input. D which is a positive integer is also passed as the input. The program must print the…
Python1 Min Read LetuscrackonJune 11, 2024 N numbers divisible by X or Y Three integers X, Y and N are passed as input. The program must print the first N values from 1 which are divisible by X or Y. Boundary…
Python1 Min Read LetuscrackonJune 11, 2024 Divisible Sum Pair Count N numbers (A0, A1, A2, …, AN-1) are passed as input to the program. A positive integer D is also passed as input to the program.The…
Python1 Min Read LetuscrackonJune 11, 2024 Sum divisible by D Two numbers A and B are passed as input. The program must print yes if the sum of these two numbers A and B is divisible by a third number D.…