Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhashkevych/fill-array
Coding interview challenge example (with a solution using Go).
https://github.com/zhashkevych/fill-array
array arrays go golang interview interview-practice interview-preparation interview-questions interview-test
Last synced: 14 days ago
JSON representation
Coding interview challenge example (with a solution using Go).
- Host: GitHub
- URL: https://github.com/zhashkevych/fill-array
- Owner: zhashkevych
- Created: 2020-10-29T18:24:01.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-20T09:39:55.000Z (about 4 years ago)
- Last Synced: 2024-10-23T09:48:13.498Z (2 months ago)
- Topics: array, arrays, go, golang, interview, interview-practice, interview-preparation, interview-questions, interview-test
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coding Interview Challenge (Fill Array)
## Task Description
You need to implement logic that fills 5x5 array with random unique integers in range 0-100.
Keep in mind, that this requirements can change in future, so you should design code that can easily adapt to new set of rules.
Code should be testable & production-ready.
## Solution is implemented using Go (1.15)
### Build & Run
```
make run
```### Test
```
make test
```