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…
Python1 Min Read LetuscrackonJune 11, 2024 Sort N Strings – Descending Order N strings are passed as input. The program must sort them in the descending order. Input Format: The first line contains the value of N. Next…
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…
C Java Python1 Min Read LetuscrackonJune 9, 2024 Arrange Alphabets – Descending Order A string S (with only LOWER case alphabets and length from 3 to 100) will be passed as input. The program should print the alphabets in the…
C1 Min Read LetuscrackonJune 8, 2024 String Sorted in Descending Order The program must accept N string values as the input. The program must print the N string values sorted lexicographically in descending order…
C Python1 Min Read LetuscrackonJune 7, 2024 Check Sorted Array – Descending Order The program must accept N integer values and check if they are sorted in descending order or not. Input : 5834 700 53 45 12 Output : yes Here…
Java1 Min Read LetuscrackonJune 7, 2024 Merge Sorted Descending The program must accept two lines of integers (M and N number of integers) which are sorted in ascending order. The program must merge the two…