Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christianberg/advent
Solving the Advent of Code puzzles in `jq`
https://github.com/christianberg/advent
jq puzzle-solution
Last synced: 17 days ago
JSON representation
Solving the Advent of Code puzzles in `jq`
- Host: GitHub
- URL: https://github.com/christianberg/advent
- Owner: christianberg
- Created: 2021-12-01T07:01:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T07:49:28.000Z (11 months ago)
- Last Synced: 2024-08-01T09:25:55.878Z (4 months ago)
- Topics: jq, puzzle-solution
- Language: jq
- Homepage:
- Size: 83 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of jq
Solving the [Advent of Code](https://adventofcode.com/) puzzles in
[`jq`](https://stedolan.github.io/jq/).Generally there are two scripts per day: `a.jq` is the solution to
part 1 of the puzzle, `b.jq` the solution to part 2. The scripts are
executable and read the puzzle input from `STDIN`:```
./a.jq < sample.txt
```