day6

package
v0.0.0-...-4552376 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 25, 2024 License: MIT Imports: 7 Imported by: 0

README

--- Day 6: Probably a Fire Hazard ---
Because your neighbors keep defeating you in the holiday house decorating contest year after year, you've decided to deploy one million lights in a 1000x1000 grid.

Furthermore, because you've been especially nice this year, Santa has mailed you instructions on how to display the ideal lighting configuration.

Lights in your grid are numbered from 0 to 999 in each direction; the lights at each corner are at 0,0, 0,999, 999,999, and 999,0. The instructions include whether to turn on, turn off, or toggle various inclusive ranges given as coordinate pairs. Each coordinate pair represents opposite corners of a rectangle, inclusive; a coordinate pair like 0,0 through 2,2 therefore refers to 9 lights in a 3x3 square. The lights all start turned off.

To defeat your neighbors this year, all you have to do is set up your lights by doing the instructions Santa sent you in order.

For example:

- turn on 0,0 through 999,999 would turn on (or leave on) every light.
- toggle 0,0 through 999,0 would toggle the first line of 1000 lights, turning off the ones that were on, and turning on the ones that were off.
- turn off 499,499 through 500,500 would turn off (or leave off) the middle four lights.

After following the instructions, how many lights are lit?

--- Part Two ---
You just finish implementing your winning light pattern when you realize you mistranslated Santa's message from Ancient Nordic Elvish.

The light grid you bought actually has individual brightness controls; each light can have a brightness of zero or more. The lights all start at zero.

The phrase turn on actually means that you should increase the brightness of those lights by 1.

The phrase turn off actually means that you should decrease the brightness of those lights by 1, to a minimum of zero.

The phrase toggle actually means that you should increase the brightness of those lights by 2.

What is the total brightness of all lights combined after following Santa's instructions?

For example:

- turn on 0,0 through 0,0 would increase the total brightness by 1.
- toggle 0,0 through 999,999 would increase the total brightness by 2000000.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Part1

func Part1(r io.Reader) (int, error)

func Part2

func Part2(r io.Reader) (int, error)

Types

type Action

type Action string
const (
	TurnOn  Action = "turn on"
	TurnOff Action = "turn off"
	Toggle  Action = "toggle"
)

type Instruction

type Instruction struct {
	// contains filtered or unexported fields
}

func NewInstruction

func NewInstruction(s string) (Instruction, error)

func (*Instruction) UnmarshalText

func (ins *Instruction) UnmarshalText(text []byte) error

type Pattern

type Pattern struct {
	// contains filtered or unexported fields
}

Pattern represents a pattern of lights.

func NewPattern

func NewPattern(r image.Rectangle) *Pattern

func (*Pattern) NLit

func (p *Pattern) NLit() int

NLit returns the number of lights that are lit.

func (*Pattern) Toggle

func (p *Pattern) Toggle(r image.Rectangle)

Toggle toggles whether the selected lights are lit. Unlit lights are set to a brightness of 1.

func (*Pattern) Toggle2

func (p *Pattern) Toggle2(r image.Rectangle)

Toggle2 increases the brightness of the selected lights by 2.

func (*Pattern) TotalBrightness

func (p *Pattern) TotalBrightness() int

func (*Pattern) TurnOff

func (p *Pattern) TurnOff(r image.Rectangle)

TurnOff sets the brightness of the selected lights to 0.

func (*Pattern) TurnOff2

func (p *Pattern) TurnOff2(r image.Rectangle)

TurnOff2 decreases the brightness of the selected lights by 1. Unlit lights are unchanged.

func (*Pattern) TurnOn

func (p *Pattern) TurnOn(r image.Rectangle)

TurnOn sets the brightness of the selected lights to 1.

func (*Pattern) TurnOn2

func (p *Pattern) TurnOn2(r image.Rectangle)

TurnOn2 increases the brightness of the selected lights by 1.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL