Python1 Min Read LetuscrackonApril 17, 2026 Skip Lunch Count An employee if he had breakfast after 11:00 am on a given day, skips lunch on that specific day. So given the time of his breakfast…
Python1 Min Read LetuscrackonApril 12, 2026 Divisible Sum Pair Count N numbers (A0, A1, A2, …, AN-1) are passed as input to the program. A positive integer D is also passed as input to the program.The…
Python1 Min Read LetuscrackonApril 12, 2026 Digits Division Count A number N is passed as input to the program. The program must print the count of digits which divide the number N without leaving a…
Python1 Min Read LetuscrackonApril 2, 2026 All Digits – Pairs Count The program must accept N integers as the input. The program must print the number of pairs X where the concatenation of…
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…