package
0.0.0-20241102054555-b6e87e53946e
Repository: https://github.com/kotopheiop/gocodewarssolutions.git
Documentation: pkg.go.dev

# README

Grasshopper - Grade book

Grade book

Complete the function so that it finds the average of the three scores passed to it and returns the letter value associated with that grade.

Numerical ScoreLetter Grade
90 <= score <= 100'A'
80 <= score < 90'B'
70 <= score < 80'C'
60 <= score < 70'D'
0 <= score < 60'F'

Tested values are all between 0 and 100. Theres is no need to check for negative values or values greater than 100.