Skip to content

Instantly share code, notes, and snippets.

@ejamesc
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save ejamesc/0c11b6b44541e5d28fba to your computer and use it in GitHub Desktop.

Select an option

Save ejamesc/0c11b6b44541e5d28fba to your computer and use it in GitHub Desktop.
Solution for Golang Tour No 58
package main
import (
"fmt"
"math"
)
// type declaration
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("Cannot Sqrt negative number: %v",
float64(e))
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
} else {
z := float64(100)
s := float64(0)
for math.Abs(s - z) > 0.000001 {
s = z
z = z - (z*z - x)/(2*z)
}
return z, nil
}
}
func main() {
fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment