1
0

fixed day 7 concat operator where rhs is 10^x

This commit is contained in:
2024-12-08 18:12:12 +01:00
parent d1f49d204f
commit b987f56e5d

View File

@@ -98,7 +98,7 @@ fn well(expected: i64, acc: i64, operands: &[i64]) -> bool {
} }
fn concat(lhs: i64, rhs: i64) -> i64 { fn concat(lhs: i64, rhs: i64) -> i64 {
let exp: u32 = (rhs as f64).log10().ceil() as u32; let exp: u32 = (rhs as f64 + 1.0).log10().ceil() as u32;
let shift = 10i64.pow(exp); let shift = 10i64.pow(exp);
lhs * shift + rhs lhs * shift + rhs
} }
@@ -130,5 +130,6 @@ mod test {
#[test] #[test]
fn test_concat() { fn test_concat() {
assert_eq!(1234, concat(12, 34)); assert_eq!(1234, concat(12, 34));
assert_eq!(1210, concat(12, 10));
} }
} }