package
0.0.0-20241126132414-a6474f9c9b52
Repository: https://github.com/talgat-ruby/exercises-go.git
Documentation: pkg.go.dev

# README

Problem 7

Create a function that takes a number as an argument and returns the highest digit in that number.

highestDigit(379) // 9

highestDigit(2) // 2

highestDigit(377401) // 7