Skip to content

Advent Of Code 2020 in whatever language I'm able to write a simple program in

License

Notifications You must be signed in to change notification settings

shilangyu/AoC-2020

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AoC-2020

Advent of Code 2020 in Rust, Golang, Julia, Typescript, Python, C, Nim, C++, Dart, Zig, C#, and Swift

function writtenIn(day: number): string {
  const choices = [
    "Rust",
    "Golang",
    "Julia",
    "Typescript",
    "Python",
    "C",
    "Nim",
    "C++",
    "Dart",
    "Zig",
    "C#",
    "Swift",
  ];
  return choices[(day - 1) % choices.length];
}
day part 1 part 2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Run all with ./run.sh. Requires:

  • cargo
  • go
  • julia
  • deno
  • python
  • gcc
  • nim
  • dart
  • zig
  • dotnet, dotnet-script
  • swift

About

Advent Of Code 2020 in whatever language I'm able to write a simple program in

Resources

License

Stars

Watchers

Forks