package main import ( "github.com/01-edu/z01" correct "./correct" ) func main() { var table [10]int for j := 0; j < 5; j++ { for i := 0; i < 10; i++ { table[i] = z01.RandIntBetween(0, 1000) } z01.Challenge("PrintMemory", PrintMemory, correct.PrintMemory, table) } table2 := [10]int{104, 101, 108, 108, 111, 16, 21, 42} z01.Challenge("PrintMemory", PrintMemory, correct.PrintMemory, table2) }