Welcome to my CodeWars Exercises repository! This is where I document my journey of sharpening my problem-solving skills by solving CodeWars challenges on a regular basis.
Each exercise is stored in a separate file following the naming convention:
<Ku_Level>
: Difficulty level denoted in Kyu (Ku) lower number is the higher difficulty.<Exercise_Name>
: Descriptive name of the CodeWars exercise.
Each file contains the following sections:
-
Problem Definition: A description of the problem statement.
-
Parameters: List of input parameters required for the function.
-
Returns: Expected output or return value.
-
Examples: Examples illustrating the usage of the function.
-
Pseudo Code: High-level plan before the actual code implementation.
-
Code: Implementation of the solution.