Skip to content

Commit 2a57558

Browse files
committed
Update skeleton
1 parent e8c5a8c commit 2a57558

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Library/skeleton.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
/*
22
* Problem: $(PROBLEM)
3-
* URL: $(URL)
3+
* Url: $(URL)
44
* Judge: $(JUDGE)
55
* Contest: $(CONTEST)
6-
* DATE CREATED: $(DATE)
6+
* Date Created: $(DATE)
77
* Memory Limit: $(MEMLIM)
88
* Time Limit: $(TIMELIM)
9-
* VERDICT: undefined
9+
* Verdict: undefined
1010
*/
1111

1212
#include <stdint.h> //uint32_t
1313
#include <unistd.h> // unsigned int sleep(unsigned int seconds);
14+
1415
#include <algorithm>
1516
#include <bitset>
1617
#include <cctype>
@@ -85,12 +86,10 @@ typedef vector<long long> vl;
8586
#define EPS 1e-7
8687
#define MAX 10000007 // 1e7+7
8788

88-
8989
int main() {
9090
ios_base::sync_with_stdio(false);
9191
cin.tie(0);
9292
cout.tie(0);
9393

9494
return 0;
9595
}
96-

0 commit comments

Comments
 (0)