Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ericbutera/code-challenges-go
code challenges, golang edition
https://github.com/ericbutera/code-challenges-go
Last synced: about 2 months ago
JSON representation
code challenges, golang edition
- Host: GitHub
- URL: https://github.com/ericbutera/code-challenges-go
- Owner: ericbutera
- Created: 2022-03-18T10:07:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T12:31:06.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T06:32:52.683Z (7 months ago)
- Language: Go
- Size: 1.02 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# code-challenges-go
code challenges, golang edition
## container registry
- [dockerhub](https://hub.docker.com/r/ericbutera/code-challenges-go) `docker pull ericbutera/code-challenges-go`
- [ghcr](https://github.com/ericbutera/code-challenges-go/pkgs/container/code-challenges-go) `docker pull ghcr.io/ericbutera/code-challenges-go:release`## resources
- [table driven tests](https://github.com/golang/go/wiki/TableDrivenTests)
- [effective go](https://go.dev/doc/effective_go#introduction)
- [learn go with tests](https://quii.gitbook.io/learn-go-with-tests/go-fundamentals/hello-world)
- [go by example](https://gobyexample.com/)
- [testify](https://github.com/stretchr/testify)## commands
```sh
go test
```## notes
- [SliceTricks](https://github.com/golang/go/wiki/SliceTricks)
- In Go, := is for declaration + assignment, whereas = is for assignment only.
- no overloads
- no default parameters
- look into
- [no ternary](https://go.dev/doc/faq#Does_Go_have_a_ternary_form)