An open API service indexing awesome lists of open source software.

https://github.com/mlomb/problems


https://github.com/mlomb/problems

Last synced: about 1 year ago
JSON representation

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;
}
```