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:…
Java Python1 Min Read LetuscrackonJune 9, 2024 Count the primes in a range Two whole numbers N1 and N2 are passed as input. The program must print the number of primes present between N1 and N2 (the range is inclusive…
Python1 Min Read LetuscrackonJune 8, 2024 Count Words Write an algorithm and write the Python code to count the number of unique words in a given passage. The paragraph may contain words with…
C Python1 Min Read LetuscrackonJune 8, 2024 Sort Numbers – Factor Count The program must accept N positive integers as the input and sort them based on the factor count (lowest to highest factor count). If two…
Python1 Min Read LetuscrackonJune 8, 2024 Family – Count Descendants The program must accept the first and last names of N persons in a family. The last name of each person indicates the name of his/her father.…