impl Solution { pub fn my_sqrt(x: i32) -> i32 { (x as f64).sqrt().trunc() as i32 } }. Comments: 0. Best Most Votes Newest to Oldest
確定! 回上一頁