Welcome to the Python Hunt 2026 grader repository! This repository contains the algorithmic questions, standard I/O test cases, and reference Python solutions for the event.
The project is structured by Question (e.g., Q1-1, Q2-2, Q3-3). Inside each question folder, you will find:
*.infiles: The standard input for the test cases (typically 10 test cases per question:1.into10.in).*.solfiles: The expected standard output for the corresponding input file (1.solto10.sol).solution.py: A reference Python script that perfectly solves the problem and passes all test cases.
- Q1-x: Greeting formatting, Date conversion, List slicing (Affiliate rewards)
- Q2-x: Area Calculator, Run-Length Compression, Isosceles Triangle ASCII Art
- Q3-x: F1 Telemetry Data Analysis, 2D Grid Warehouse Item Locator, Digital Vault Security Simulation
On the event we use grader system hosted for the event but if you want to try you can follow instruction below.
For an automated setup or manual testing, simply compile or run the participant's script and feed it the .in file:
# Example manual test check
python3 Q1-1/solution.py < Q1-1/1.inCompare the terminal output against the exact contents of Q1-1/1.sol.