I collected all the code I had written to check my capabilities and learn a few things and code problems I had solved.
-
- armstrong.c : Check if the given number is armstrong or not.
- factorial.c : Find the factorial of any given number.
- find_prime.c : Find the prime numbers between given range.
- matrix.c : Basic matrix operations.
- palindrome.c : Check if the given string is palindrome or not (also works for integer values).
- patterns.c : Code to print patterns
- prime.c : Check whether the given number is prime.
- reverse.c : Find the reverse of the given number.
-
- longestCommonPrefix.py : Have to find longest common prefix in a string.
- palindrome.py : Have to check if the given integer (also applies for string) is palindrome or not.
- romanToInt.py : Have to convert roman numbers to integer numbers
- twoSum.py : Have to return indices of the sum of number which equals to targeted number.
-
- Stone_paper_scissor.py : Code of the stone paper scissor game.
- tic_tac_toe.py : Code of the tic tac toe game.
-
- love : A fun way to ask you partner if they love you or not.