C Java Python2 Min Read LetuscrackonJune 12, 2024 Adding a Digit to Maintain Ascending Order The program must accept a number N as input. Determine if it’s possible to add at most one digit (0-9) anywhere in the number to make…
Java1 Min Read LetuscrackonJune 11, 2024 Sort – Odd & Even Ascending An array of N numbers is passed as the input. The program must sort the odd numbers and even numbers separately in ascending order. The odd…
Python1 Min Read LetuscrackonJune 11, 2024 Mirror Pattern – Ascending Descending Order Accept an integer N as the input. The program must print the mirror pattern as shown in the Example Input/Output section below. Boundary…
Python1 Min Read LetuscrackonJune 11, 2024 X to Z Ascending – Y to X Descending Three positive integers X, Y and Z are passed as the input to the program. The program must print from X to Z in the forward direction and…
C1 Min Read LetuscrackonJune 10, 2024 Unit Digit – Ascending and Descending The program must accept two integers as the input. The program must sort the two integers in ascending order based on their unit digit and…
Python2 Min Read LetuscrackonJune 7, 2024 Merge Three Arrays – Ascending Order The program accepts three array elements with the size of the arrays as A, B and C as the input. All the integers in…
Python1 Min Read LetuscrackonJune 5, 2024 Number – X Largest Digits Ascending Number – X Largest Digits Ascending: Accept a number N and print the first X largest digits in N in ascending order. Input Format:The…