Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pastjung/algorithm
알고리즘 코딩 테스트 대비
https://github.com/pastjung/algorithm
algorithm baekjoon cplusplus
Last synced: about 1 month ago
JSON representation
알고리즘 코딩 테스트 대비
- Host: GitHub
- URL: https://github.com/pastjung/algorithm
- Owner: pastjung
- Created: 2024-08-28T02:32:26.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T06:53:05.000Z (2 months ago)
- Last Synced: 2024-09-29T12:22:54.865Z (about 2 months ago)
- Topics: algorithm, baekjoon, cplusplus
- Language: C++
- Homepage: https://www.acmicpc.net/
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```