Python1 Min Read LetuscrackonMarch 9, 2025 Right Triangle Characters Pattern Program in Python Right Triangle Characters Pattern: A string S is passed as the input to the program. The program must print the characters in the string in…
C1 Min Read LetuscrackonFebruary 25, 2025 Inverse Two Triangle Pattern Inverse Two Triangle Pattern: Fill in the missing lines of code to implement the method (function) printPattern(int N) so that the…
Python1 Min Read LetuscrackonFebruary 11, 2025 Reverse Asterisk Triangle Pattern Reverse Asterisk Triangle Pattern: The program must accept an integer N as input and print the pattern as given in the Example Input/Output…
Python1 Min Read LetuscrackonJanuary 15, 2025 Right Angle Triangle Right Angle Triangle: The length of the three sides of a triangle A, B and C are passed as the input. The program must check it it’s a…
Python1 Min Read LetuscrackonJanuary 8, 2025 Increment & Decrement Triangle Pattern Increment & Decrement Triangle Pattern: The program must accept an Integer N as the input. The program must print hyphens and integers In…
Python1 Min Read LetuscrackonDecember 8, 2024 Triangle Count from Array Program In Python An array of N integers is passed as the input to the program. The program must print the count of triangles that can be formed with the given…
C1 Min Read LetuscrackonJune 12, 2024 C – Type of triangle The length of three sides of triangle A,B,C will be passed as input. The program must print the type of the triangle. Input Format:First line…
C Python1 Min Read LetuscrackonJune 11, 2024 Triangle Pattern – 002 Given an odd integer N, print a triangle with * as mentioned in the below examples. Input Format: The first line contains N. Output Format:…
Python1 Min Read LetuscrackonJune 11, 2024 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…
Python1 Min Read LetuscrackonJune 10, 2024 Reverse Alphabet 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 section.…