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
- Host: GitHub
- URL: https://github.com/vlucet/advent
- Owner: VLucet
- License: other
- Created: 2023-12-01T14:33:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T20:46:15.000Z (over 1 year ago)
- Last Synced: 2025-01-22T08:35:36.921Z (6 months ago)
- Language: R
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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)
```