Leetcode Note: Go - Sqrt(x)

Sqrt(x) - LeetCode
https://leetcode.com/problems/sqrtx/

  • Go 言語で取り組んだメモ

所感

  • math ライブラリでなんとかなるのでは?

実装準備

func mySqrt(x int) int {
    return 0
}

func main() { 
    x := 4
    fmt.Println(mySqrt(x))
}

回答

func mySqrt(x int) int {
    return int(math.Sqrt(float64(x)))
}