fn group<T>(lists ...[]T) [][]T
group n arrays into a single array of arrays with n elements
fn idx_max<T>(a []T) int
idx_max returns the index of the first maximum
fn idx_min<T>(a []T) int
idx_min returns the index of the first minimum
fn max<T>(a []T) T
max returns the maximum
fn merge<T>(a []T, b []T) []T
merge two sorted arrays (ascending) and maintain sorted order
fn min<T>(a []T) T
Common arrays functions: - min / max - return the value of the minumum / maximum - idx_min / idx_max - return the index of the first minumum / maximum - merge - combine two sorted arrays and maintain sorted order min returns the minimum
fn shuffle<T>(mut a []T, n int)