1
0

Compare commits

3 Commits

Author SHA1 Message Date
Justi bc8d46dbc8 Day 1 2022-12-07 17:24:53 -05:00
Justi f59de48e85 init 2022-12-07 17:24:45 -05:00
MPenate0 4e8c51769e Update 'README.md' 2022-12-03 20:06:37 -05:00
4 changed files with 2263 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
[package]
name = "AdventP1"
version = "0.0.1"
edition = "2022"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+2244
View File
File diff suppressed because it is too large Load Diff
+8
View File
@@ -0,0 +1,8 @@
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main(){
let input = "input.txt";
let file = File::open(input).unwrap();
}
+3 -9
View File
@@ -1,13 +1,7 @@
# Advent2022 # Advent2022
Advent of Code for 2022 Group [Advent of Code](https://adventofcode.com/2022) repository for 2022. Private collection of code solutions from those invited to participate in our small community.
## How to contribute # Branch Format
To contribute to the Advent of Code 2022, please pull master and create a branch with your name. Each day is broken up into it's own folder. All code is written in Rust, and will not be published.
Recommended folder structure is `{Day}\{Language}\{Part}`
## Tips
It is recommended to include small document on how the program works and how to compile & run the program.