An open API service indexing awesome lists of open source software.

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

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)