C Java JavaScript Python3 Min Read LetuscrackonJune 11, 2024 Distinct Length Pairs The program must accept M integers and N integers as the input. The program must form pairs of integers by selecting one integer from M…
Python1 Min Read LetuscrackonJune 11, 2024 Smallest Substring – All Distinct Letters A string value S containing only alphabets (both lower and upper case) is passed as input to the program. The program must print the size of…
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 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 8, 2024 Distinct Letters Write an algorithm and the subsequent Python code to check if the given word is good or bad.: e.g. START, GOOD, BETTER are bad: WRONG is…