Skip to content

Instantly share code, notes, and snippets.

@Zepheus
Created May 23, 2013 21:02
Show Gist options
  • Save Zepheus/5639400 to your computer and use it in GitHub Desktop.
Save Zepheus/5639400 to your computer and use it in GitHub Desktop.
// Go-language square root implementation
package main
import ("fmt")
func Sqrt(x float64) float64 {
z, precision := 1.0, 2.22e-15
for {
z = (z + x/z)/2
if abs(z*z - x) < precision {
return z
}
}
}
func abs(x float64) float64 {
if x < 0 {
x = -1.0 * x
}
return x
}
func main() {
fmt.Println(Sqrt(2))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment