package
0.0.0-20241020204346-852d83918761
Repository: https://github.com/plutov/practice-go.git
Documentation: pkg.go.dev
# README
Floyd's triangle
Please provide a function FloydTriangle
that returns a Floyd's triangle matrix by given rows count.
1
2 3
4 5 6
7 8 9 10
Run tests with benchmarks
go test -bench .
# Functions
Triangle makes a Floyd's triangle matrix with rows count.