Struct year2016::Day16

source ·
pub struct Day16<'a> { /* private fields */ }
Expand description

2016 Day 16: Calculating a dragon curve checksum.

The checksum is based on the parity of each chunk, and each chunk is the length of the largest power of 2 that divides the checksum’s length.

Using the dragon bit parity function from /u/askalski’s post “How to tame your dragon in under a millisecond” we can calculate the parity of any length of the sequence:

  • Calculate how many full repeats of the pattern [Original data][Dragon bit][Reversed & inverted data][Dragon bit] there are, and how far through the pattern the final truncated repeat was.
  • Calculate the parity of the full repeats of the original and the reversed & inverted data.
  • Calculate the parity of the original data in the truncated repeat, if any.
  • Calculate the parity of the reversed & inverted data in the truncated repeat, if any.
  • Calculate the parity of all the dragon bits.
  • XOR the four calculated parity values together.

This allows computing the parity from the start of the sequence to the end of each chunk, which then can be used to find each chunk’s parity by XORing each parity with the previous one.

Implementations§

source§

impl<'a> Day16<'a>

source

pub fn new(input: &'a str, input_type: InputType) -> Result<Self, InputError>

source

pub fn part1(&self) -> String

source

pub fn part2(&self) -> String

Trait Implementations§

source§

impl<'a> Clone for Day16<'a>

source§

fn clone(&self) -> Day16<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Day16<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Puzzle for Day16<'_>

source§

const YEAR: Year = _

Year 2016

source§

const DAY: Day = _

Day 16

source§

impl PuzzleExamples<&'static str, &'static str> for Day16<'_>

source§

const EXAMPLES: &'static [(&'static str, Option<&'static str>, Option<&'static str>)] = _

Auto Trait Implementations§

§

impl<'a> Freeze for Day16<'a>

§

impl<'a> RefUnwindSafe for Day16<'a>

§

impl<'a> Send for Day16<'a>

§

impl<'a> Sync for Day16<'a>

§

impl<'a> Unpin for Day16<'a>

§

impl<'a> UnwindSafe for Day16<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.