library(adventofcode21)
x <- readLines("./inst/input09.txt")
x <- do.call(rbind, strsplit(x, ""))
x <- apply(x, 2, as.numeric)
p1 <- f09a(x)
p2 <- f09b(x)
stopifnot(p1 == aoc_solutions$day09a)
stopifnot(p2 == aoc_solutions$day09b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.