Skip to content

Commit b477a6b

Browse files
committed
aceito
1 parent 6a1357a commit b477a6b

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Exercicios/taligado.cpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@
33
#include <algorithm>
44

55
using namespace std;
6-
#define MAXN 100001
7-
typedef vector<int> vi;
8-
96
int n, m;
10-
vi v[MAXN];
117

128
int main() {
13-
ios::sync_with_stdio(0);
14-
cin.tie(0);
9+
int t, a, b;
1510

1611
cin >> n >> m;
17-
int t, a, b;
12+
vector<int> v[100001];
1813

1914
while(m--) {
2015
cin >> t >> a >> b;

0 commit comments

Comments
 (0)