Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathieu-keller/go-katas
https://github.com/mathieu-keller/go-katas
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathieu-keller/go-katas
- Owner: mathieu-keller
- Created: 2024-02-11T09:53:53.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-03T16:20:24.000Z (9 months ago)
- Last Synced: 2024-10-15T07:48:51.981Z (3 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Go Coding Katas
This repository contains a collection of coding katas that I have implemented to improve my understanding of the Go programming language.
## What are Coding Katas?
Coding Katas are small coding exercises that are meant to practice programming skills. They are a great way to learn a new programming language or to improve your existing skills.
## How to Use This Repository
Each directory in this repository represents a different coding kata. Inside each directory, you will find a README file that explains the problem that the kata is meant to solve, and a .go file that contains the solution.
## Implemented Katas
Here, you can list all the katas you have implemented. For example:
1. [Bowling](./Bowling/README.MD)
## Running the Katas
To run a kata, navigate to its directory and run the .go file. For example:
```bash
cd Bowling
go run main.go
```