C1 Min Read LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 9, 2024 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…