Unleashing Potential: Empowering Future Coders

Welcome to Letuscrack Code – Your gateway to coding excellence! Dive into 1200+ expertly solved programs designed to prepare you for placement success.

Explore Trending Topics

PythonF

Mean, Median, and Mode

Given an array, X, of N  integers, calculate and print the respective mean, median, and mode on separate lines. If your array contains more…
PythonF

Add Numbers – Base N

Two numbers X and Y are provided with reference to base N. Add the numbers and print their sum with reference to base 10. Input Format: First…
PythonF

Find the digital sum

A number N is passed as an input to the program. The program must print the digital sum of the number. Note: The digital sum of a number is…
PythonF

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…
PythonF

Keyboard Letters

Given an  English word,  write an algorithm and the subsequent Python code to check if the given word can be typed using just a…
CF

Nature of Digit in Position

Given a number ‘n’ and a position; Write an algorithm and subsequent ‘C’ program to Check if the ‘p-th’ Digit, Starting from left-most digiit…