package
0.0.0-20241126132414-a6474f9c9b52
Repository: https://github.com/talgat-ruby/exercises-go.git
Documentation: pkg.go.dev
# README
Problem 3
Create a function that calculates the number of different squares in an n * n square grid.
numberSquares(2) // 5
numberSquares(3) // 14
numberSquares(4) // 30
numberSquares(5) // 55