push all exercices

This commit is contained in:
lbenedar
2026-02-21 14:09:13 +03:00
commit a94d994b8c
72 changed files with 787 additions and 0 deletions

BIN
ch4/1/ch4_1.exe Normal file

Binary file not shown.

14
ch4/1/ch4_1.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"fmt"
"math/rand"
)
func main() {
randSlice := make([]int64, 100)
for i := 0; i < 100; i++ {
randSlice[i] = rand.Int63n(100)
}
fmt.Println(randSlice)
}

3
ch4/1/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module ch4_1
go 1.25.0