Skip to content

Instantly share code, notes, and snippets.

View skifli's full-sized avatar
:shipit:
contemplating life choices

skifli

:shipit:
contemplating life choices
View GitHub Profile
@skifli
skifli / README.md
Last active December 7, 2024 11:37
Advent of Code 2024 Day 6

Wasn't doing AOC this year, but did this day specifically for some friends. Hacked together and written without execution speed in mind - instead, I wanted to get working code as quickly as possible.

@skifli ➜ /workspaces/bruty (main) $ time python day_06.py
Part 1: 4656
Part 2: 1575

real    0m5.520s
user 0m5.369s
import os
clear = lambda: os.system("cls" if os.name == "nt" else "clear")
mode = input(">>> ")
clear()
if mode == "1":
while True:
inp = input("\n")