programming-exercises

About

A public repository where I share my programming exercises from CodeWars, LeetCode, BeeCrowd and others.


How this repository is organized

This repository is structured by platform, programming language, and problem.

📁 General structure

platform/
└── language/
    └── problem_identifier/
        ├── solution.py

📂 platform/

Represents the source of the problem (e.g., CodeWars, LeetCode, BeeCrowd).

🧩 language/

Indicates the programming language used to solve the problem (e.g., python, javascript, go).

🏷️ problem_identifier/

A unique folder for each problem.


🧠 solution.py

Contains the main solution to the problem.


🟣 CodeWars

Problems are organized by difficulty (kyu level):

codewars/language/difficulty/exercise-name/

🟡 LeetCode

Problems are organized by their ID and name:

leetcode/language/difficult/

🟢 BeeCrowd

Problems are organized by their numeric ID and name:

beecrowd/language/difficult/

Notes