A collection of my solutions to competitive programming problems across multiple platforms, written in Python.
compprogramming/
βββ codewars/ # Solutions to Codewars kata challenges
βββ projecteuler/ # Solutions to Project Euler math problems
s
Codewars is a platform where developers train on coding challenges called kata. Problems range from beginner to advanced across topics like algorithms, data structures, string manipulation, and more.
Project Euler is a series of mathematical and computational problems that require a blend of math insight and programming to solve efficiently. Problems progressively increase in difficulty.
All solutions are written in Python 3.
To run any solution locally:
# Clone the repo
git clone https://github.com/maanvikp20/compprogramming.git
cd compprogramming
# Run a solution
python3 codewars/solution_name.py
python3 projecteuler/problem_001.pypy- Sharpen problem-solving and algorithmic thinking
- Practice mathematical reasoning through Project Euler
- Improve Python proficiency through consistent practice
Feel free to explore, star β the repo if you find it helpful, or reach out if you'd like to discuss solutions!