1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/5kyu/count_ip_addresses/solution.rs
Matej Focko fc899b0b02
chore: initial commit
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-12-28 16:19:58 +01:00

10 lines
247 B
Rust

fn parse_ip(ip_str: &str) -> u32 {
ip_str
.split(".")
.map(|octet| octet.parse::<u32>().unwrap())
.fold(0, |ip, octet| (ip << 8) | octet)
}
pub fn ips_between(start: &str, end: &str) -> u32 {
parse_ip(end) - parse_ip(start)
}