/fill-array

Coding interview challenge example (with a solution using Go).

Primary LanguageGo

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