Short way to check if prime

PHOTO EMBED

Fri Apr 22 2022 19:59:07 GMT+0000 (Coordinated Universal Time)

Saved by @fredc ##rust

// Short way to check if prime
fn is_prime(x: i64) -> bool {
    let last = (x as f64).sqrt() as i64 + 1;
    x > 1 && (2..last).all(|d| x % d != 0)
}
content_copyCOPY