Skip to content

Commit 41de510

Browse files
committed
문제 풀이 탬플릿 추가
1 parent 15e9b1a commit 41de510

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

challenges/Template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# 문제
2+
여기에 문제이름을 작성하세요.
3+
## 문제 원본
4+
문제의 원본은 [여기서](https://www.acmicpc.net/problem/) 확인하세요.
5+
6+
## 분류
7+
* 알고리즘 풀이 분류
8+
9+
# 풀이
10+
11+
여기에 풀이를 작성하세요.
12+
13+
``` c++
14+
#include <iostream>
15+
16+
using namespace std;
17+
18+
19+
int main(void) {
20+
cout << "hello world";
21+
22+
return 0;
23+
}
24+
```

0 commit comments

Comments
 (0)