12. 3×3×3 Random Array

Easy

Create a 3×3×3 array of random values in the range [0, 1). To make this reproducible, seed the global random state with 0 immediately before generating the values, inside solve; seeding earlier (e.g. at import time) won't reliably reproduce the same numbers, since the seed is global, shared state.

Sign in to write and run your own code.

Implement solve(...)