Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cubik65536/competitive-programming
My Solutions in C++ or Java (Sometimes Both) & Problem Analysis (Sometimes) for Competitive Programming Problems (Generally USACO and Canadian Computing Competition)
https://github.com/cubik65536/competitive-programming
canadian-computing-competition ccc ccc-solutions cpp cpp17 java java-8 usaco usaco-solutions
Last synced: 10 days ago
JSON representation
My Solutions in C++ or Java (Sometimes Both) & Problem Analysis (Sometimes) for Competitive Programming Problems (Generally USACO and Canadian Computing Competition)
- Host: GitHub
- URL: https://github.com/cubik65536/competitive-programming
- Owner: Cubik65536
- License: cc-by-sa-4.0
- Created: 2023-02-17T04:03:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-18T12:30:55.000Z (7 months ago)
- Last Synced: 2024-10-10T21:19:35.406Z (27 days ago)
- Topics: canadian-computing-competition, ccc, ccc-solutions, cpp, cpp17, java, java-8, usaco, usaco-solutions
- Language: C++
- Homepage:
- Size: 56.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Cubik65536/Competitive-Programming
My Solutions in C++ or Java (Sometimes Both) & Problem Analysis (Sometimes) for Competitive Programming Problems
(Generally USACO and Canadian Computing Competition)---
## 🗃️ Commit Message Format
### For USACO
``` text
[][USACO] ""Result:
```* ``: The type of the commit. Can be one of the following:
* `ADD`: Add a new solution.
* `FIX`: Fix a bug in an existing solution.
* `DEL`: Delete an existing solution.
* ``: The contest season, e.g. `2022-JAN`, `2022-US_OPEN`, etc.
* ``: The level of the problem, e.g. `Bronze`, `Silver`, `Gold`, etc.
* `` *(Optional)*: The problem name, e.g. `Problem 1. Visits`.
* ``: The result of the solution, e.g. `WA #5`, `TLE #11`, etc.> **Note**: `` line will be skipped if
>
> * the solution have been accepted (AC for all test cases)
> * `` is `DEL`
> * `` is not specified### For CCC
``` text
[][CCC] - ""Result:
```* ``: The type of the commit. Can be one of the following:
* `ADD`: Add a new solution.
* `FIX`: Fix a bug in an existing solution.
* `DEL`: Delete an existing solution.
* ``: The contest season, e.g. `2022`, `2021`, etc.
* ``: The level of the problem: `JUNIOR` or `SENIOR`.
* `` *(Optional)*: The problem name, e.g. `Problem 5. CCC Word Hunt`.
* ``: The result of the solution, e.g. `WA Subtask 1 Test 5`, `TLE Subtask 4 Test 18`, etc.> **Note**: `` line will be skipped if
>
> * the solution have been accepted (AC for all test cases)
> * `` is `DEL`
> * `` is not specified## 📜 License
Different content in this repository is licensed under different licenses according to the different types of content.
* Any content that are not codes (e.g. Problem Analysis) are licensed under the [Creative Commons Attribution-ShareAlike 4.0 International License](LICENSE).
* Codes in this repository are licensed under the [MIT License](LICENSE.CODE).