Advent Of Code 2015-2023 Public Stats
Contains leaderboard stats, titles & completion rates for Advent of Code puzzles
@kaggle.michaeltezak_advent_of_code_public_stats
Contains leaderboard stats, titles & completion rates for Advent of Code puzzles
@kaggle.michaeltezak_advent_of_code_public_stats
I wanted to gather all of the Advent of Code public data in one place to create some nice visualizations. Perhaps there are other fans of AoC out there who will find this useful.
Also, check out my Advent of Code puzzle solving website: https://aoc-puzzle-solver.streamlit.app/
CREATE TABLE completions (
"year" BIGINT,
"day" BIGINT,
"title" VARCHAR,
"gold" BIGINT,
"silver" BIGINT
);CREATE TABLE leaderboard (
"timestamp" TIMESTAMP,
"part" BIGINT,
"points" BIGINT,
"user_name" VARCHAR,
"supporter" BOOLEAN,
"sponsor" BOOLEAN
);Anyone who has the link will be able to view this.