Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pastjung/algorithm

알고리즘 코딩 테스트 대비
https://github.com/pastjung/algorithm

algorithm baekjoon cplusplus

Last synced: about 1 month ago
JSON representation

알고리즘 코딩 테스트 대비

Awesome Lists containing this project

README

        

# Algorithm
백준 온라인 자동 푸시 저장소 | From. [BaekjoonHub](https://github.com/BaekjoonHub/BaekjoonHub).

### | Link
> - Velog [(링크)](https://velog.io/@chwogus/series/%EC%BD%94%EB%94%A9%ED%85%8C%EC%8A%A4%ED%8A%B8)
> - Backjoon [(링크)](https://www.acmicpc.net/user/chwogus)
> - [![Solved.ac프로필](http://mazassumnida.wtf/api/generate_badge?boj=chwogus)](https://solved.ac/chwogus)
> - Programmers [(링크)](https://programmers.co.kr/users/challenge-activity)

### Info
> - 본 레포지토리는 [(자료구조)](https://github.com/pastjung/DataStructure)를 학습한 이후 학습하고 있습니다.
> - 본 학습에서는 C++를 사용하기 때문에 표준 입출력 성능을 향상시키기 위해 사용되는 다음과 같은 설정을 사용했습니다
```
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
```