Skip to content

Commit 0f9b1fb

Browse files
committed
Apply .gitignore
1 parent 45cb805 commit 0f9b1fb

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# ignore .xcodeproj folder
2+
3+
*.xcodeproj/
4+
DerivedData/

baekjoon/BTS/dp1/1010/1010.cpp

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
int main(){
13+
14+
int T;
15+
int N, M;
16+
17+
cin >> T;
18+
19+
for(int i =0; i<T; i++){
20+
21+
cin >> N >> M;
22+
23+
24+
25+
}
26+
}

0 commit comments

Comments
 (0)