Obtains the data from the wanted year and day and transform the data into a tibble.
Reading the response into a tibble makes the following assumptions using readr::read_delim()
;
delim = "\n"
skip_empty_rows = FALSE
show_col_types = FALSE
Responses will be cached to reduce the number of requests sent to the Advent of Code website.
aoc_get_data_as_tibble(year, day)
Numeric. Year of the challenge.
Numeric. Day of the challenge.
Tibble containing data from the wanted year and day.
Other HTTP Request functions:
aoc_get_response()
if (FALSE) {
d <- aoc_get_data_as_tibble(2022, 1)
}