Skip to content
Snippets Groups Projects
Commit 92c2dba0 authored by Falk Rehse's avatar Falk Rehse
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
/target
input
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "advent-of-code-23"
version = "0.1.0"
[package]
name = "advent-of-code-23"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Advent of Code 2023
pub fn solve_from_str(input: &str) -> u32 {
0
}
mod day_1_1;
use std::fs;
fn main() {
let input = fs::read_to_string("input").expect("Could not read input!");
let solution = day_1_1::solve_from_str(input.as_str());
println!("Solution: {}", solution);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment