Skip to content

Releases: jayDevCodes/CodeJudge

CPJudge v1.0.0

11 Mar 21:26
ec11a7e

Choose a tag to compare

CPJudge v1.0.0

First release of CPJudge, a tiny local competitive programming judge written in C++.

Features

  • Run solutions locally
  • Test programs with predefined input/output files
  • Automatic output comparison
  • PASS / FAIL results for each test case
  • Lightweight and easy to use

Example Usage

Compile solution:

g++ solution.cpp -o solution

Compile judge:

g++ cpjudge.cpp -o cpjudge

Run tests:

./cpjudge

Project Goal

CPJudge aims to provide a simple local testing environment for competitive programming practice.

Upcoming Features

  • Colored PASS / FAIL output
  • Unlimited test cases
  • Command-line arguments
  • Time limit enforcement
  • Multi-language support

Author: Jay Dev
GitHub: https://github.com/jayDevCodes