Python LetuscrackonApril 9, 2026 Even Triangle Pattern Given an integer N as input, the program must print the pattern as mentioned in the Example Input/Output Section. Boundary Condition(s):2…
Python LetuscrackonApril 8, 2026 String Concatenation – Company Name & Location Two string values S1 and S2 are passed as input. The program must print the output as S1 Technologies S2. Input Format: The first line denotes…
C LetuscrackonApril 8, 2026 Match the Expression Series of N expression(including serial number) and values are given as input, the program must match the values to the expression by printing…
Python LetuscrackonApril 7, 2026 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…
Python LetuscrackonApril 7, 2026 1 to N – Forward and Reverse Interlaced The program must accept a number N and print the numbers from 1 to N in both forward and reverse direction interlaced with each otherINPUT…
Python LetuscrackonApril 6, 2026 Column-wise Alphabet Sort A matrix of size N*N is passed as input. The program must sort the matrix(lexicographically) column-wise and prints the matrix. Boundary…
Python LetuscrackonApril 6, 2026 Farmer-breaking yield records A farmer wishes to track during each harvest if he has broken previous best or worst records. The yield (in certain units) is passed as input…
C LetuscrackonApril 5, 2026 Shooting Targets N shooting targets are placed in a two dimensional grid and their x and y co-ordinates are provided. The x and y co-ordinates are integer…
Python LetuscrackonApril 5, 2026 Number Sequence Sort The program must accept and sort N number sequences. A number sequence can be multiplication, power or a normal number. The sorted list should…
C LetuscrackonApril 4, 2026 Interchange largest and smallest values Given N distinct integer values, the program must swap the position of the largest and smallest integer values. Input Format:The first line…