An open API service indexing awesome lists of open source software.

https://github.com/vlucet/advent

R functions for advent of Code - 2023
https://github.com/vlucet/advent

Last synced: 4 months ago
JSON representation

R functions for advent of Code - 2023

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# advent `r emo::ji("christmas_tree")` `r emo::ji("woman_technologist")`

The goal of advent is to help with completing the advent of code 2023 challenges.

## Installation

You can install the development version of advent from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("VLucet/advent")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(advent)
```