https://github.com/renjithspace/code-mastery
Coding challenges, algorithms and data-structures in TypeScript for beginners
https://github.com/renjithspace/code-mastery
Last synced: about 2 months ago
JSON representation
Coding challenges, algorithms and data-structures in TypeScript for beginners
- Host: GitHub
- URL: https://github.com/renjithspace/code-mastery
- Owner: renjithspace
- Created: 2023-05-05T15:35:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T13:19:52.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T11:06:04.436Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# TypeScript Code Mastery
Build confidence in TypeScript development while mastering essential programming principles.
### Challenges
1. [Check whether two strings are anagram or not](/challenges/isAnagram.ts)
2. [Check whether a string is palidrom or not](/challenges/isPalindrom.ts)
3. [Check whether a number is prime number or not](/challenges/isPrimeNumber.ts)
4. [Calculates the factorial of a number](/challenges/calcFactorial.ts)
5. [Calculates the factorial of a number using recursive approach](/challenges/recursiveCalcFactorial.ts)
6. [Check whether a number is odd or even](/challenges/isOddOrEven.ts)
7. [Reverses the order of the elements in an array](/challenges/reverseArray.ts)
8. [Reverses the order of the characters in a string](/challenges/reverseString.ts)### Algorithms
1. [Binary search](/algorithms/binarySearch.ts)