This repository contains some basic coding problems that I've done. Hope you find this useful.
You can find both python and C program in here.
The list of questions in this is:
- How do you find the missing number in a given integer array of 1 to 100?
- How do you find the duplicate number on a given integer array?
- How do you find the largest and smallest number in an unsorted integer array?
- How do you find all pairs of an integer array whose sum is equal to a given number?
- How do you find duplicate numbers in an array if it contains multiple duplicates?
- To check whether a number is prime or not.
- Insertion Sort.
- Bubble sort
- Selection sort
- Reverse the elements of an array.
- Reverse a string.
- Leap year.
- Write a program to print Fibonacci Series
- Sum of prime factors.
- Check whether a given number is an Amstrong Number or not.
- Check whether a given number is a pallindrome or not.