Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 405 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 405 Bytes

Advent of Code 2020

Using the puzzles to practice some languages.

See run instructions per language below

JavaScript (node.js)

# Day 01
node 01.js

# Day 02
node 02.js

# and so forth

Go

Some utility functions have been extracted to util.go. The simples way to run it, is as following:

# Day 01
go run util.go 01.go

# Day 02
go run util.go 02.go

# and so forth