Skip to content

m-vellinga/advent_2020

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2020

Day template

pub fn run(input: String) {
    println!("Day X Part 1: {}", part_1());
    println!("Day X Part 2: {}", part_2());
}

fn part_1() -> u64 {
    1
}

fn part_2() -> u64 {
    2
}

#[test]
fn test_part_1() {

}

#[test]
fn test_part_2() {

}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages