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

https://github.com/saehun/leetcode-typescript


https://github.com/saehun/leetcode-typescript

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Leetcode solved in Typescript

## Inspirational
- Two sum
- Single number: using bitwise XOR
- Linked list cycle: Floyd cycle detection algorithm

## Review needed
- 3sum
- Best time to buy and sell stock: O(n) solution is somehow simple and tricky(for me)

## Techinques

### DP
- Word break

### Sliding windows