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

https://github.com/borisskert/go-katas

This repo contains my solutions for some Go(-lang) katas submitted in Codewars.
https://github.com/borisskert/go-katas

codewars-golang codewars-kata codewars-kata-solutions codewars-solutions golang

Last synced: 7 months ago
JSON representation

This repo contains my solutions for some Go(-lang) katas submitted in Codewars.

Awesome Lists containing this project

README

          

# Go katas

![](https://www.codewars.com/users/besterboris/badges/micro)

This repo contains my solutions for some Go katas submitted in [Codewars](https://www.codewars.com).

## Prerequisites

You need to install the [go1.22.x](https://go.dev/dl/) for your OS to build this project and run its tests.

## Linting Code

```shell
golangci-lint run # (in project root folder)
```

## Run tests

```shell
go test -v ./... # (in project root folder)
```