C1 Min Read LetuscrackonMarch 7, 2026 Find the count of distinct numbers A set of numbers will be passed as input. The program has to print the count of distinct numbers in it. Input Format:The first line contains…
Python1 Min Read LetuscrackonMarch 5, 2026 Anagrams Count Two strings S1, S2 are passed as input to the program. The program must print the count of anagrams present in both the strings. Out of each…
Python1 Min Read LetuscrackonMarch 2, 2026 Unique Alphabet Count A string S is passed as input to the program which has only alphabets (all alphabets in lower case). The program must print the unique count…
C Java Python2 Min Read LetuscrackonFebruary 19, 2026 Integer – Count of Even Integers The program must accept an integer N as the input. The program must print the number of even integers that can be formed from the…
Java1 Min Read LetuscrackonFebruary 18, 2026 JAVA – Static Members – Students Count The main method in Hello.java is as shown below. Define the class Student.java by filling in the code so that the program…
C1 Min Read LetuscrackonFebruary 8, 2026 Count Embedded Integers in String A string is passed as input. The program must print the count of integers present in the string. Boundary Condition(s):1 <= Length of…
C1 Min Read LetuscrackonJanuary 13, 2026 C – Functions – Vowel Count A string is passed as input. The program must print the count of vowels. Fill in the lines to implement the function countVowels. Boundary…
Java1 Min Read LetuscrackonJanuary 10, 2026 Numbers – Range Count Given N distinct integers, the program must print the number of ranges R present. A range is defined as two or more consecutive integers.…
Dynamic Programming Java2 Min Read LetuscrackonJanuary 8, 2026 Street Travel Count Mr.X has a bike and is travelling in a town which has N horizontal (West to East direction) and N vertical (North to South…
Python1 Min Read LetuscrackonDecember 11, 2025 Count of UpperCase Letters A string S is passed as the input. The program must print the number of upper case letters in the string S. Input Format: The first line…