An open API service indexing awesome lists of open source software.

https://github.com/tbsklg/rust-katas


https://github.com/tbsklg/rust-katas

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Rust-katas
[![](https://www.codewars.com/users/tbsklg/badges/micro)](https://www.codewars.com/users/tbsklg)

This repository contains my solutions to Katas hosted on [codewars.com](https://www.codewars.com/).
Each Kata is a separate Rust project that you can build and run.

# How to run
For each Kata, you can run the following commands within the Kata's directory.

## Run
```bash
cargo run
```

## Testing
```bash
cargo test
```

## Linting
```bash
cargo clippy
```

## Formatting
```bash
cargo fmt
```