This repository contains a collection of basic and array-related coding problems to help you prepare for technical interviews. Each problem is implemented in Python and is designed to test your understanding of fundamental programming concepts and data structures.
This folder contains basic data structure and algorithm questions.
- Write a Python program to Reverse a String.
- Write a Python program to Check Palindrome.
- Write a Python program to Count Vowels in a String.
- Write a Python program to find Factorial with Recursion.
- Write a Python program to find Fibonacci Sequence.
- Write a Python program to find the Maximum Element in a List.
- Write a Python program to find Anagram Check.
- Write a Python program to find Prime Numbers.
- Write a Python program to check for Pangram.
- Write a Python program to find the Minimum Element in a List.
- Write a Python program to calculate the Sum of Digits in a Number.
- Write a Python program to check for Armstrong Number.
- Write a Python program to check for Leap Year.
- Write a Python program to find the Average Numbers in a List.
- Write a Python program to Merge Two Sorted Lists.
- Write a Python program to Remove Duplicates from a String.
- Write a Python program to Check for Perfect Numbers.
- Write a Python program to Find the Maximum Difference between Two Elements in a List.
- Write a Python program to check if a Number is Even or Odd.
- Write a Python program to Count Words in a Sentence.
- Write a Python program to Convert Decimal to Binary.
- Write a Python program to Find Second Largest Element in a List.
- Write a Python program to Reverse Words in a String.
- Write a Python program to check if a Number is a Prime Factor.
- Write a Python program to check if a Number is a Power of Two.
- Write a Python program to convert Celsius to Fahrenheit.
- Write a Python program to calculate the LCM (Least Common Multiple) of Two Numbers.
This folder contains array-related coding problems.