rustgym 0.2.0

rustgym solutions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
struct Solution;

impl Solution {
    fn my_sqrt(x: i32) -> i32 {
        (x as f64).sqrt().floor() as i32
    }
}

#[test]
fn test() {
    assert_eq!(Solution::my_sqrt(8), 2);
}