Files
adventofcode-2019/day04/Day04.rs

12 lines
186 B
Rust
Raw Normal View History

//use std::io::{self, Read};
//type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
fn main() {
part1(246515, 739105);
}
fn part1(lower: usize, upper: usize) {
}