diff --git a/2018/day6/Cargo.toml b/2018/day6/Cargo.toml new file mode 100644 index 0000000..4a8ce08 --- /dev/null +++ b/2018/day6/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "day6" +version = "0.1.0" +authors = ["Andrew Coleman "] +edition = "2018" + +[dependencies] diff --git a/2018/day6/input b/2018/day6/input new file mode 100644 index 0000000..b6dc4cd --- /dev/null +++ b/2018/day6/input @@ -0,0 +1,50 @@ +158, 163 +287, 68 +76, 102 +84, 244 +162, 55 +272, 335 +345, 358 +210, 211 +343, 206 +219, 323 +260, 238 +83, 94 +137, 340 +244, 172 +335, 307 +52, 135 +312, 109 +276, 93 +288, 274 +173, 211 +125, 236 +200, 217 +339, 56 +286, 134 +310, 192 +169, 192 +313, 106 +331, 186 +40, 236 +194, 122 +244, 76 +159, 282 +161, 176 +262, 279 +184, 93 +337, 284 +346, 342 +283, 90 +279, 162 +112, 244 +49, 254 +63, 176 +268, 145 +334, 336 +278, 176 +353, 135 +282, 312 +96, 85 +90, 105 +354, 312 diff --git a/2018/day6/src/main.rs b/2018/day6/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2018/day6/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}