Dynamic Programming Python1 Min Read LetuscrackonJune 13, 2024 Count Overlapping String Pattern Two string values S and P representing a string and pattern are passed as the input to the program. The program must print the number of…
Python ZOHO1 Min Read LetuscrackonJune 12, 2024 Print 1 to N – Digits Count [ZOHO] A positive integer N is passed as the input. If we print all the numbers from 1 to N continuosly, the program must find the number of…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Even Digits in Odd Positions The program must accept an integer N as the input. The task is to count and print the number of even digits in N that are present in odd…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Groups with Same Consecutive Digits The program must accept an integer N as the input. The program must count the number of groups in the number where the same digit appears…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits Inverted in Their Position The program must accept an integer N as the input. The task is to count and print the number of digits in N whose position (from the rightmost…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Both Prime and Even The program must accept an integer N as the input. The task is to count and print the number of digits that are both prime and even in the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Zeroes Surrounded by the Same Digit The program must accept an integer N as the input. The task is to count the number of zeroes in the number which are surrounded by the same…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Fibonacci Numbers The program must accept an integer N as the input. The task is to count and print the number of digits in N that are Fibonacci numbers. If no…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits That Are Less Than Previous Digit The program must accept an integer N as the input. The task is to count and print the number of digits in N that are less than their immediate…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Bits Count – Y to X The program must accept two integers X and Y where X is always greater than or equal to Y. The program must print the count of bits C that…