This repository contains my solutions for URI Online Judge (beecrowd) problems.
URI Online Judge is a platform featuring programming challenges of various domains and difficulties to improve algorithmic thinking and problem-solving skills.
No external dependencies are required. Ensure you have Python installed.
To create a new problem template file, run the create_problem.sh script:
./create_problem.sh <category> <problem_number>Example:
./create_problem.sh Beginner 1001Or for a tried problem (which will be excluded from the solved counts):
./create_problem.sh Tried/Beginner 1001This script will validate the category and problem number, create the directories if they don't exist, check that the file doesn't already exist, and create a starter Python file with a template.
To update the progress summary table in this README.md after solving new problems, run the generate_readme.py script:
python3 generate_readme.py