# Update knitr chunk options
# https://yihui.name/knitr/options/#chunk-options
knitr::opts_chunk$set(
  comment = NA,
  fig.align = "center",
  tidy = FALSE,
  fig.path = paste0("figure/", knitr::current_input(), "/")
)
# Insert the date the file was last updated
cat(sprintf("**Last updated:** %s", Sys.Date()))
# Insert the code version (Git commit SHA1) if Git repository exists and R
# package git2r is installed
if(requireNamespace("git2r", quietly = TRUE)) {
  if(git2r::in_repository()) {
    code_version <- substr(git2r::commits()[[1]]@sha, 1, 7)
  } else {
    code_version <- "Unavailable. Initialize Git repository to enable."
  }
} else {
  code_version <- "Unavailable. Install git2r package to enable."
}
cat(sprintf("**Code version:** %s", code_version))
rm(code_version)

See more puzzles

Advent of Code

Session information

sessionInfo()

Brief

Let's go

Packages & functions

library(tidyverse)
library(testthat)
library(aocodeR)

Input

input <- aoc_get_input(day, cookie_path = paste0(rprojroot::find_rstudio_root_file(),
                                                 "/secrets/session_cookie.txt")) 
input

Functions


Test

#expect_equal(,)

deploy


Success!



---- Part 2 ----

Brief

Let's go

Test

#expect_equal(,)

deploy


Success!



template based on the workflowr standalone template



annakrystalli/aocodeR documentation built on May 22, 2019, 1:34 p.m.