BitCrab Alumni Code Study
스터디 목적: 알고리즘 문제 풀이 능력 향상 & 코드 리뷰 습관 정착
활동 방식: 문제 풀이 → 코드 공유 → 디스코드로 상호 리뷰(코멘트/PR)
C language (C11 표준)
boj/ # Baekjoon 문제 풀이
swea/ # SW Expert Academy 문제 풀이
codeforces/ # Codeforces 문제 풀이
templates/ # C 템플릿 / 유틸
템플릿 코드: templates/template.c
boj/1000_A+B.c
swea/D4_1234_암호.c
codeforces/round959_A.c
boj: 1000 A+B 풀이
swea: D4 1234 암호 풀이
cf: round959 A개인 작업 시 새 브랜치 생성 → PR → 리뷰 → main 반영
feat/boj-1000
feat/swea-1234
feat/cf-round959-A
gcc -O2 -Wall -std=c11 -o main boj/1000_A+B.c./main < input.txtgcc -g -Wall -std=c11 -o debug boj/1000_A+B.c
gdb ./debug- sumin-world
- th6perp
- Fork the repository
- Create your feature branch (
git checkout -b feat/problem-name) - Commit your changes (
git commit -m 'boj: 1234 문제 풀이') - Push to the branch (
git push origin feat/problem-name) - Open a Pull Request
- 섹션 1. 과정소개(2개, 5분)
- 섹션 2. Type(3개, 1시간 16분)
인프런 계정 로그인/로그아웃 꼭 남겨두기
같이 생각해보면 좋은 것들도 디스코드로 자유롭게 공유합시당
Made with 💻 by BitCrab Alumni