This repository contains the unofficial solutions to the Canadian Computing Competition. Solutions are inspired by various sources, including personal solutions, online resources, and Milliken Mills CCC repository.
My solution deviates from the CCC Java code standard because of the testing purpose. I use JUnit framework to implement the test cases for each solution to demonstrate how each solution is tested against the test data. You must to follow the CCC code standard if you plan to write the contest.
All solutions are tested by the complete test data set provided by CCC official website
.
├── src/main/java
├── src/test/java
└── src/test/resources
src/main/java
- contains source code, organized by years in different package
src/test/java
- contains test cases, organized by years in different package
src/test/resources
- contains test data files
Thank you for all your support! I will keep posting high quality solutions.