Skip to content

Instantly share code, notes, and snippets.

View liz3's full-sized avatar
🌐
Im currently stationary in a psychiatry. depression sucks

Liz liz3

🌐
Im currently stationary in a psychiatry. depression sucks
View GitHub Profile
@liz3
liz3 / 25.cpp
Created December 26, 2023 01:52
AOC 2023 Day 25
#include "common.h"
struct Node {
std::string name;
std::unordered_map<std::string, bool> edges;
};
struct Edge {
std::string first, second, origFirst, origSecond;
};
@liz3
liz3 / Test.Kt
Created December 15, 2017 21:19
package de.durchrasten.displays.display
import net.minecraft.server.v1_8_R3.*
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer
import org.bukkit.entity.Player
class WrappedScoreboard(var title:String) {
private val scoreboard = Scoreboard()