https://github.com/mlomb/problems
https://github.com/mlomb/problems
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mlomb/problems
- Owner: mlomb
- Created: 2018-06-29T15:45:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-04T17:13:10.000Z (about 7 years ago)
- Last Synced: 2024-10-06T10:41:03.351Z (over 1 year ago)
- Language: C++
- Size: 24.8 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Template
```cpp
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
#ifdef LOCAL
ifstream cin("input.in");
#endif
// solution
return 0;
}
```