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

https://github.com/sangrimlee/algorithm

LeetCode와 Programmers의 문제들을 TypeScript로 푼 문제 풀이입니다.
https://github.com/sangrimlee/algorithm

algorithm coding-test leetcode programmers typescript

Last synced: 14 days ago
JSON representation

LeetCode와 Programmers의 문제들을 TypeScript로 푼 문제 풀이입니다.

Awesome Lists containing this project

README

          

![cover](/website/public/images/og.png)

# Algorithm

알고리즘 문제 풀이 저장소입니다.

모든 풀이는 **TypeScript**로 작성되었습니다.

추가적인 구현이 필요한 자료구조 또는 유틸리티 함수는 [@algorithm/lib](./packages/lib)에 구현되어 있으며, 이를 사용하는 문제 풀이 또한 있습니다.

## Solution

- [모든 문제 풀이 목록 보러가기↗️](./solution/README.md)
- [웹 사이트에서 보기↗️](https://algorithm.sangrim.dev)

## Packages

| Pacakge | Description |
| --------------------------------- | ------------------------------------ |
| [@algorithm/cli](./packages/cli) | 문제 템플릿을 생성하는 CLI |
| [@algorithm/lib](./packages/lib) | 문제 풀이에 사용되는 공통 라이브러리 |
| [@algorithm/solution](./solution) | 문제 풀이 |
| [website](./website) | 문제 풀이 정리 Website |

## Problem Source

- [LeetCode](https://leetcode.com/problemset/all/)
- [Programmers](https://programmers.co.kr/learn/challenges)