Skip to content

hlibsuprun/codewars-katas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

17 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Codewars katas

Profile Badge

Table of Contents

Introduction

Welcome to the repository for my Codewars solutions written in JavaScript. Here you can find solutions to various katas categorized by their kyu level.

Structure

The repository follows a specific structure to organize the solutions:

β”œβ”€β”€ 8-kyu/
β”‚ β”œβ”€β”€ Kata Name/
β”‚ β”‚ β”œβ”€β”€ index.js
β”‚ β”‚ β”œβ”€β”€ index.test.js
β”‚ β”‚ └── README.md
β”‚ └── ...
β”‚
β”œβ”€β”€ 7-kyu/
β”‚ β”œβ”€β”€ Kata Name/
β”‚ β”‚ β”œβ”€β”€ index.js
β”‚ β”‚ β”œβ”€β”€ index.test.js
β”‚ β”‚ └── README.md
β”‚ └── ...

Installation

To get started with this repository, follow these steps:

  1. Clone the repository to your local machine:

    git clone https://github.com/hlibsuprun/codewars-katas.git
    
  2. Navigate to the repository directory:

    cd codewars-katas
    
  3. Install dependencies using yarn:

    yarn
    

Running Tests

To run tests for all solutions, you can use the following command:

yarn test

To watch for changes and run tests automatically, use:

yarn test-watch

Contributing

If you'd like to contribute to this repository, feel free to submit a pull request with your changes. Please ensure that your code follows the existing structure and conventions. Additionally, make sure to include tests for any new solutions or changes.