C Java Python2 Min Read LetuscrackonApril 1, 2026 Search Substring & Print Words The program must accept a space-separated string S and N string values as the input. For each string X among the…
LetuscrackonMarch 26, 2026 Print "Hello world" in different languages Here is a selection of programming languages that have a place in the programming hall of fame. They’re all either used today…
Python1 Min Read LetuscrackonMarch 6, 2026 Print Nth term in A.P The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
Python1 Min Read LetuscrackonFebruary 24, 2026 Print Numbers – Frequency Based An array of N positive integers is passed as input. The program must print the numbers in the array based on the frequency of their…
C1 Min Read LetuscrackonFebruary 13, 2026 C – Function Pointer – Print OddEven Three integers A, B and C are passed as input. If A is 0 the program must print the odd numbers from B to C. If A is 1 the program must print…
C1 Min Read LetuscrackonFebruary 7, 2026 Matrix Print Excluding Border elements A matrix of size N*N is passed as input. The program must print the matrix excluding the elements present at the border of the matrix.…
Python1 Min Read LetuscrackonJanuary 28, 2026 Print Xth Digit from Last Two integers N and X are given as input. The program must print the Xth digit of N from last. Boundary Condition(s):1 <= N <= 9999999991…
C Java Python2 Min Read LetuscrackonJanuary 28, 2026 Print Date Format The program must accept a valid date D in any format as the input. The day DD, the month MM or MMM and the…
Python1 Min Read LetuscrackonJanuary 27, 2026 String – Print till char A string S is passed as input along with a character C. The program must print the string value S till C is reached. Input Format:The first…
C1 Min Read LetuscrackonNovember 12, 2025 Reverse Order – print N to 1 A number N is passed as the input. The program must print the numbers from N to 1 (inclusive of N). Input Format: The first line denotes the…