forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0050_powx_n.rs
61 lines (56 loc) · 1.2 KB
/
n0050_powx_n.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* [50] Pow(x, n)
*
* Implement <a href="http://www.cplusplus.com/reference/valarray/pow/" target="_blank">pow(x, n)</a>, which calculates x raised to the power n (x^<span style="font-size:10.8333px">n</span>).
*
* Example 1:
*
*
* Input: 2.00000, 10
* Output: 1024.00000
*
*
* Example 2:
*
*
* Input: 2.10000, 3
* Output: 9.26100
*
*
* Example 3:
*
*
* Input: 2.00000, -2
* Output: 0.25000
* Explanation: 2^-2 = 1/2^2 = 1/4 = 0.25
*
*
* Note:
*
*
* -100.0 < x < 100.0
* n is a 32-bit signed integer, within the range [-2^31, 2^31 - 1]
*
*
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn my_pow(x: f64, n: i32) -> f64 {
x.powi(n)
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_50() {
assert_eq!(Solution::my_pow(2.0, -2), 0.25);
assert_eq!(Solution::my_pow(2.0, 4), 16.0);
assert_eq!(Solution::my_pow(2.0, 5), 32.0);
assert_eq!(Solution::my_pow(2.0, 1), 2.0);
assert_eq!(Solution::my_pow(2.0, -1), 0.5);
assert_eq!(Solution::my_pow(2.0, 10), 1024.0);
}
}