Skip to content

Instantly share code, notes, and snippets.

@slawosz
Last active December 19, 2015 05:19
Show Gist options
  • Save slawosz/5903490 to your computer and use it in GitHub Desktop.
Save slawosz/5903490 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"math"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
// fmt functions use Error() to get message, so it will be an infinite loop without conversion....
return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e))
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
}
z := x
delta := 0.001
notDone := true
fmt.Println("foo")
for notDone {
res := z - ((z*z) - x)/(2*z)
if math.Abs(res - z) < delta {
notDone = false
}
z = res
}
return z, nil
}
func main() {
fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2))
fmt.Printf("cannot Sqrt negative number: %v", ErrNegativeSqrt(-2))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment