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…
Java1 Min Read LetuscrackonJune 9, 2024 Count of Consonants in a String Given a string,program must print the count of Consonants in a string Example input/output 1: Input:abcde output:3 Example input/output 2:…
Python1 Min Read LetuscrackonJune 9, 2024 Maximum Repeating Count Given an array of integers of length N, the program must find the value which repeats in maximum number of times and print the number. In case…
C Python1 Min Read LetuscrackonJune 9, 2024 String – Count Articles A string S is passed as the input. The program must print the number of articles in S. The string S passed as the input NEEDNOT be corrected…
Python1 Min Read LetuscrackonJune 9, 2024 Count Odd Numbers in an Interval Range Given two non-negative integers low and high. Return the count of odd numbers…
Python1 Min Read LetuscrackonJune 9, 2024 Distinct Elements Count Two integer arrays of length L1 and L2 are passed as input. The program must print the sum of the distinct elements present in both the…
Python1 Min Read LetuscrackonJune 9, 2024 Count of Common Characters in the Strings Two string values S1 and S2 are passed as input. The program must print the count of common characters in the strings S1 and S2. Input Format:…