package
0.0.0-20241126132414-a6474f9c9b52
Repository: https://github.com/talgat-ruby/exercises-go.git
Documentation: pkg.go.dev
# README
Problem 2
Create a function that returns a base-2 (binary) representation of a base-10 (decimal) string number.
binary(1) // "1"
binary(5) // "101"
binary(10) // "1010"