Programs Python Hephzibai EnstinonMarch 25, 2026 Alternate 1s And 0s The program must accept an integer N as the input. The program must print YES if the binary representation of N contains 1’s and…
Python LetuscrackonMarch 25, 2026 Sum of Last X Digits Given two integers N and X as input, the program must print the sum of last X digits in the given integer N. Boundary Condition(s):1 <= N…
Programs Python Hephzibai EnstinonMarch 24, 2026 Distinct K Problem StatementAshish is provided with a collection of n strings in which some strings are of repeating nature and he has been given with a…
C LetuscrackonMarch 24, 2026 C – Function – Replace with Largest Number Given an integer array of size N as input, the program must replace every element of the array with the largest number that can be formed by…
C LetuscrackonMarch 23, 2026 Max Same Letter Square Size Certain kids were playing a game in which they would draw a N*N matrix and would fill in a letter from A to Z in a given cell based on certain…
C LetuscrackonMarch 23, 2026 Array Rotate Forward – R times An array of N integers is passed as the input to the program and the program must rotate the elements R times in forward direction. Input…
C LetuscrackonMarch 22, 2026 Complete Array reverse Method An array of N integers is passed as the input to the program and the program must print the array after reversing it. Complete the method…
C LetuscrackonMarch 22, 2026 C – Function – Reverse In Groups Given an array of integers of size N and size of group R as input, the program must reverse and print every R elements in the array. Please…
Programs Python Hephzibai EnstinonMarch 21, 2026 Parenthesis Pattern The program must accept a string $ as the input. The program must print the desired pattern as shown in the Example Input/Output section.…
Python LetuscrackonMarch 21, 2026 Bus Booking Requests The program must accept two integers M and N as the input, where M represents the number of buses in a row and N…