fix: make expected results more descriptive for numbers exercises
This commit is contained in:
@ -28,7 +28,11 @@ import (
|
||||
// https://golang.org/pkg/math/#Pow
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// 1256.64
|
||||
// go run main.go 10
|
||||
// 1256.64
|
||||
//
|
||||
// go run main.go 54.2
|
||||
// 36915.47
|
||||
// ---------------------------------------------------------
|
||||
|
||||
func main() {
|
||||
|
@ -25,7 +25,11 @@ import (
|
||||
// Use `math.Pow` to calculate the volume
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// 4188.79
|
||||
// go run main.go 10
|
||||
// 4188.79
|
||||
//
|
||||
// go run main.go .5
|
||||
// 0.52
|
||||
// ---------------------------------------------------------
|
||||
|
||||
func main() {
|
||||
|
Reference in New Issue
Block a user