C Python2 Min Read LetuscrackonJune 8, 2024 Smallest Palindromic Integer – Greater than X The program must accept N unique digits and an integer X as the input. The program must print the smallest palindromic integer, which is…
Python1 Min Read LetuscrackonJune 8, 2024 Split Integer – Range Sum The program must accept an integer N as the input. The program must print YES if it is possible to split the integer N…
Python1 Min Read LetuscrackonJune 7, 2024 Integer – Place Values The program must accept an integer N as the input. The program must print each place value in the integer N as the output. Boundary…
C Python1 Min Read LetuscrackonJune 7, 2024 Integer Triangle – Pattern The program must accept an integer N as the input. The program must print the desired pattern as shown in the Example Input/Output…
C Python1 Min Read LetuscrackonJune 7, 2024 Integer with Two Digits The program must accept an integer N as the input. The program must print YES if the integer N is formed using exactly two digits. Else the…
Python1 Min Read LetuscrackonJune 7, 2024 Integer – Count of Pairs The program must an integer N as the input. The program must print the count C of pairs of positive integers X and Y so that the sum of X and…
C Python1 Min Read LetuscrackonJune 7, 2024 N Integers – Kth Largest Integer The program must accept N integers and an integer K as the input. The program must print the Kth largest integer among the N integers as the…
C Python1 Min Read LetuscrackonJune 7, 2024 Integer – Exactly Three Digits The program must accept an integer N as the input. The program must print yes if exactly three digits are used to form the integer N. Else the…
Python1 Min Read LetuscrackonJune 7, 2024 Sum of Digits – Largest Integer The program must accept N integers as the input. The program must print the sum of the digits of the largest integer among the N…