https://github.com/bungambohlah/codewars-go-challenges
This is a code challenge solution using GO programming language from Codewars.
https://github.com/bungambohlah/codewars-go-challenges
codewars codewars-challenges codewars-golang codewars-kata codewars-kata-golang codewars-kata-solution codewars-solutions go golang
Last synced: over 1 year ago
JSON representation
This is a code challenge solution using GO programming language from Codewars.
- Host: GitHub
- URL: https://github.com/bungambohlah/codewars-go-challenges
- Owner: bungambohlah
- Created: 2023-06-06T14:24:31.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T09:52:03.000Z (almost 3 years ago)
- Last Synced: 2025-01-13T08:33:49.380Z (over 1 year ago)
- Topics: codewars, codewars-challenges, codewars-golang, codewars-kata, codewars-kata-golang, codewars-kata-solution, codewars-solutions, go, golang
- Language: Go
- Homepage: https://www.codewars.com/users/bungambohlah
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[](https://github.com/bungambohlah/codewars-go-challenges/actions/workflows/go.yml)
# Codewars GO Challenges
This is a code challenge solution using [GO](https://.go.dev) programming language from [Codewars](https://codewars.com).
You can use this solution as your reference or train.
Or for more information, you can visit my Codewars profile in here: [bungambohlah](https://www.codewars.com/users/bungambohlah)
## Table of Contents
- [Codewars GO Challenges](#codewars-go-challenges)
- [Table of Contents](#table-of-contents)
- [TODO Before Run](#todo-before-run)
- [List of Codewars Challenges is Done](#list-of-codewars-challenges-is-done)
- [Commands](#commands)
## TODO Before Run
1. Fetch dependencies
```sh
go mod download
```
2. Install ginkgo for run all test suites
```sh
go install github.com/onsi/ginkgo/v2/ginkgo
```
## List of Codewars Challenges is Done
1. [Rectangle into Rectangles](https://www.codewars.com/kata/58b22dc7a5d5def60300002a)
2. [First non-repeating character](https://www.codewars.com/kata/52bc74d4ac05d0945d00054e)
3. [Build a pile of Cubes](https://www.codewars.com/kata/5592e3bd57b64d00f3000047)
4. [Eureka!!](https://www.codewars.com/kata/5626b561280a42ecc50000d1)
5. [Equal Sides of an Array](https://www.codewars.com/kata/5679aa472b8f57fb8c000047)
6. [Roman Numerals Decoder](https://www.codewars.com/kata/51b6249c4612257ac0000005)
7. [Two Sum](https://www.codewars.com/kata/52c31f8e6605bcc646000082)
8. [Decode the Morse Code](https://www.codewars.com/kata/54b724efac3d5402db00065e)
9. [Matrix Determinant](https://www.codewars.com/kata/52a382ee44408cea2500074c)
## Commands
- Run the main function
```sh
go run codewars.go
```
- Run all tests
```sh
ginkgo ./...
```