Skip to content

Instantly share code, notes, and snippets.

@raypereda
Last active August 29, 2015 13:58
Show Gist options
  • Save raypereda/9928555 to your computer and use it in GitHub Desktop.
Save raypereda/9928555 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("cannot Sqrt negative number: %g ", float64(e))
}
func Sqrt(f float64) (float64, error) {
if f < 0 {
return 0, ErrNegativeSqrt(f)
}
z := f / 2
for i := 0; i < 10; i++ {
z = z - (z*z - f)/(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