C1 Min Read LetuscrackonDecember 28, 2025 Right Triangle with Asterisk 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…
Python1 Min Read LetuscrackonDecember 5, 2025 Pattern Printing-Half Pyramid The number of rows N is passed as the input. The program must print the half pyramid using asterisk *. Input Format:The first line contains N.…
C Python1 Min Read LetuscrackonDecember 3, 2025 Pattern Printing – Floyd Triangle A number N is passed as the number of rows in Floyd’s triangle is passed as the input. The program must print the Floyd’s triangle…
Python1 Min Read LetuscrackonNovember 24, 2025 String Zig-Zag Pattern Given a string S and an integer N as the input, the program must split the string into groups whose size is N and print them as the output in…
C1 Min Read LetuscrackonNovember 23, 2025 Pattern Printing num & * Write a program that receives a number as input and prints it in the following format as shown below. Examples:Input:6 Output:…
C Hackerrank1 Min Read Hephzibai EnstinonNovember 21, 2025 Arrow Pattern Write a program that generates a pattern based on the input value n following a specific format. Input Format:The input is a single integer n,…
C1 Min Read LetuscrackonNovember 18, 2025 Matrix Pattern Printing – First / Last Higher Given an integer N as the input, print the pattern as given in the Example Input/Output section. Input Format: The first line contains N.…
C1 Min Read LetuscrackonNovember 16, 2025 Pattern Printing – Start Number Given an integer N as the input and a start integer S, print the pattern as given in the Example Input/Output section. Input Format: The first…
Python2 Min Read LetuscrackonNovember 9, 2025 Triangular Pattern A triangular pattern with ‘n’ rows is formed with ‘i’ numbers in the i – th row, starting from the first row. In a triangular pattern,…
C1 Min Read LetuscrackonOctober 21, 2025 Odd Length String Diagonal Pattern An odd length string S of length is passed as the input. The program must print the string S as two diagonal as shown in the example…