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.
- Host: GitHub
- URL: https://github.com/borisskert/go-katas
- Owner: borisskert
- License: mit
- Created: 2022-04-07T13:07:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-09T08:25:48.000Z (9 months ago)
- Last Synced: 2025-01-09T09:39:57.096Z (9 months ago)
- Topics: codewars-golang, codewars-kata, codewars-kata-solutions, codewars-solutions, golang
- Language: Go
- Homepage:
- Size: 126 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Go katas

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)
```