Ad
  • Default User Avatar

    Tried to do it 3-4 times and always gave up. Finally got it...

  • Default User Avatar

    I'm stuck on the same case in Rust, yet it has 1k solves.

    vec![121, 144, 19, 161, 19, 144, 19, 11], vec![121, 14641, 20736, 36100, 25921, 361, 20736, 361]
    
    assertion failed: `(left == right)`
    left: `false`,
    right: `true`
    

    I assume the case was meant to have 19, 19, 190, not three 19s.

  • Default User Avatar

    Could be just me and it's not a big issue but... I think there's an extra semicolon in the Rust sample tests. I removed it and reset the Kana but it's still there.

    warning: unnecessary trailing semicolon
      --> src/lib.rs:25:289
       |
    25 | ...40.5, 1655616.5, 3045153.5, 5600910.5, 10301680.5]);;
       |                                                        ^ help: remove this semicolon
       |
       = note: `#[warn(redundant_semicolons)]` on by default