https://github.com/ekwoka/advent-of-code
Repo of algorithms for solving Advent of Code challenges
https://github.com/ekwoka/advent-of-code
algorithm javascript
Last synced: 3 months ago
JSON representation
Repo of algorithms for solving Advent of Code challenges
- Host: GitHub
- URL: https://github.com/ekwoka/advent-of-code
- Owner: ekwoka
- License: mit
- Created: 2021-12-03T18:59:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-17T11:25:29.000Z (6 months ago)
- Last Synced: 2025-03-26T03:41:33.636Z (4 months ago)
- Topics: algorithm, javascript
- Language: TypeScript
- Homepage:
- Size: 796 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
[Advent of Code](https://adventofcode.com)
Scores:
  
    
  
  
   
  
   
  
## About
Advent of Code is a series of challenges for the Christmas season that require writing simple algorithms to solve.
Take for Example:
[Task 5](2021/05/tasks.mjs) - Algorithm for mapping lines onto a 2D grid.
[Task 6](2021/06/tasks.mjs) - Algorithm for tracking Lanternfish Populations over time.
[Task 9](2021/09/tasks.mjs) - Flood-fill algorithm for identifying large basins in the sea floor.
[Task 12](2021/12/tasks.mjs) - Algorithm for finding all the possible paths through a omni-directional graph.
[Task 15](2021/15/protitytasks.mjs) - Pathfinding algorithm using a priority queue.