2024-06-27 10:40:26 -04:00
|
|
|
// Calculates the power of 2 using a bit shift.
|
|
|
|
// `1 << n` is equivalent to "2 to the power of n".
|
|
|
|
fn power_of_2(n: u8) -> u64 {
|
|
|
|
1 << n
|
|
|
|
}
|
2015-09-20 18:31:41 -04:00
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2015-09-20 18:31:41 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2024-06-27 10:40:26 -04:00
|
|
|
use super::*;
|
|
|
|
|
2015-09-20 18:31:41 -04:00
|
|
|
#[test]
|
|
|
|
fn you_can_assert_eq() {
|
2024-06-27 10:40:26 -04:00
|
|
|
// TODO: Test the function `power_of_2` with some values.
|
|
|
|
assert_eq!();
|
|
|
|
assert_eq!();
|
|
|
|
assert_eq!();
|
2015-09-20 18:31:41 -04:00
|
|
|
assert_eq!();
|
|
|
|
}
|
|
|
|
}
|