Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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