Python LetuscrackonOctober 28, 2025 Vowgram Vowgrams are words or sentences that has every vowel of the English alphabet occurring at least once. Write an algorithm and a subsequent…
Python LetuscrackonOctober 28, 2025 Consogram Consograms are words or sentences that has every consonant( letters other than a,e,i,o,u) of the English alphabet occurring at least once.…
Python LetuscrackonOctober 27, 2025 Check if Multiple of N1 and N2 The program must accept three integers N1, N2 and N3 as the input. The program must print yes if N2 is a multiple of N1 and N3 is a multiple…
Python LetuscrackonOctober 27, 2025 Eve number A number ‘n’ is said to be an Eve number if the reverse of the square of the number ‘n’ is not the square of the reverse of ‘n’. For…
Python LetuscrackonOctober 26, 2025 Automorphic Numbers Automorphic numbers are numbers having “n” digits such that the last n digits of the square of the number will be the number…
Python LetuscrackonOctober 26, 2025 Autocube Numbers Autocube numbers are numbers having “n” digits such that the last n digits of the cube of the number will be the number itself.…
Python LetuscrackonOctober 25, 2025 Reverseadam number A number ‘n’ is said to be a Reversedam number if the number is divisible by its reverse.
C Python LetuscrackonOctober 25, 2025 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…
C LetuscrackonOctober 24, 2025 Position Digits Sum The program must accept two positive integers as the input and then print the sum of their unit digits, tenth digits and so on. Input Format:…
C LetuscrackonOctober 24, 2025 Odd Length String – Middle Three Letters An odd length string S is passed as the input. The middle three letters of S must be printed as the output. Example 1;…