Skip to content

Instantly share code, notes, and snippets.

View TannerRogalsky's full-sized avatar
💯
P I X E L S

Tanner Rogalsky TannerRogalsky

💯
P I X E L S
View GitHub Profile
@TannerRogalsky
TannerRogalsky / p01.rs
Created November 28, 2022 12:41
AoC Problem01 2021 GBA
#![cfg_attr(not(test), no_std)]
#![cfg_attr(not(test), no_main)]
#[cfg(not(test))]
extern crate alloc;
#[cfg(not(test))]
type Vec<T> = alloc::vec::Vec<T>;
#[cfg(not(test))]