Skip to content

Instantly share code, notes, and snippets.

View radxene's full-sized avatar

Radu Ene radxene

  • Moldova, Chisinau
View GitHub Profile
@radxene
radxene / xterm-256color.svg
Created January 13, 2024 09:45 — forked from jasonm23/xterm-256color.svg
Xterm 256color mode color chart, organised into sections. (used on Wikipedia/xterm)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@radxene
radxene / main.rs
Created December 30, 2023 16:36 — forked from icub3d/main.rs
Advent of Code 2023 - Day 22
use std::{
cell::RefCell,
collections::{HashMap, HashSet, VecDeque},
rc::Rc,
};
// Point is used to track the start and end of a block.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
struct Point {
x: usize,