From 10b60709e3b18bcdd85d3c3d708fc55b0b2a29c7 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 15 Dec 2017 15:03:32 -0500 Subject: Day 11, part 2 --- 2017/src/bin/day11.rs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to '2017') diff --git a/2017/src/bin/day11.rs b/2017/src/bin/day11.rs index 174f950..dd46fde 100644 --- a/2017/src/bin/day11.rs +++ b/2017/src/bin/day11.rs @@ -4,6 +4,10 @@ use std::io::{self, Read}; struct Hex(i32, i32, i32); impl Hex { + fn dist(self) -> i32 { + (self.0.abs() + self.1.abs() + self.2.abs()) / 2 + } + fn mov(self, dir: &str) -> Self { let Hex(x, y, z) = self; match dir { @@ -23,7 +27,19 @@ fn solve1(input: &str) -> i32 { for dir in input.split(',') { hex = hex.mov(dir); } - (hex.0.abs() + hex.1.abs() + hex.2.abs()) / 2 + hex.dist() +} + +fn solve2(input: &str) -> i32 { + let mut hex = Hex(0, 0, 0); + let mut max = 0; + for dir in input.split(',') { + hex = hex.mov(dir); + if hex.dist() > max { + max = hex.dist() + } + } + max } fn main() { @@ -31,6 +47,7 @@ fn main() { io::stdin().read_to_string(&mut input).unwrap(); println!("Part 1: {}", solve1(input.trim())); + println!("Part 2: {}", solve2(input.trim())); } #[test] -- cgit 1.4.1 retls/commit/tls_client.c?h=3.3.3p1&id=55bd56237bac9a0522185181b3a5a6233ab5b65b&follow=1'>commit diff
path: root/tls_client.c (unfollow)
Commit message (Expand)Author
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe