Python1 Min Read LetuscrackonAugust 13, 2025 Remove Edges – Except Parallel Edges There are N nodes in a directed graph. The program must accept the adjacency matrix of the directed graph as the input. If there are…
Python1 Min Read LetuscrackonJuly 31, 2025 Sum – Remove Last Occurring Zero The program must accept N integers as the input. For each integer X among the N integers, the program must remove the last…
Python2 Min Read LetuscrackonJune 18, 2025 Matrix – Remove Apples & Oranges Matrix – Remove Apples & Oranges: The program must accept a character matrix of size R*C containing only A‘s…
C Java Kickstart Python1 Min Read LetuscrackonMay 9, 2025 Remove Unit Digit The program must accept a number and remove the unit digit. Note: The number is greater than 9. Example Input/Output 1:Input:102 Output:10…
C1 Min Read LetuscrackonApril 13, 2025 Remove Pairs – Different in Case Remove Pairs – Different in Case: The program must accept a string S as the input. The program must remove two continuous…
Python1 Min Read LetuscrackonJanuary 16, 2025 Remove Characters from Left Remove Characters from Left: The program must accept two string values S1 and S2 as the input. The program must print the minimum number of…
Python1 Min Read LetuscrackonJanuary 3, 2025 Concatenate Remove & Interlace Concatenate Remove & Interlace: The program must accept two string values (S1 and S2) and a character CH (The character can be +, –…
Python1 Min Read LetuscrackonNovember 6, 2024 Python Program To Remove First and Last Characters in a String The program must accept a String value S and remove the first and last characters. Input Format:The first line denotes the value of S. Output…
Python1 Min Read LetuscrackonJune 12, 2024 Cut & Remove Rods The program must accept N integers representing the length of N rods. A boy cuts the rods into smaller rods based on the following conditions.…
Java1 Min Read LetuscrackonJune 11, 2024 Remove First And Last Till End Given a string S, print the string S removing first and last character till no characters are left. Boundary Condition :1 <= Length of…