1
0
Fork 0

Compare commits

..

2 Commits

Author SHA1 Message Date
Justin Parsell bc8d46dbc8 Day 1 2022-12-07 17:24:53 -05:00
Justin Parsell f59de48e85 init 2022-12-07 17:24:45 -05:00
4 changed files with 2262 additions and 20 deletions

8
Day 1/Cargo.toml Normal file
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
Day 1/input.txt Normal file

File diff suppressed because it is too large Load Diff

8
Day 1/part1.rs Normal file
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();
}

View File

@ -2,24 +2,6 @@
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 repository, please create a branch with choice of name/identifier and push all changes to that branch. The master branch is locked.
Organize your code however you please (categorization of day, language, part are up to you). Do not push compiled applications or input files. To help prevent this automatically, you can create a `.gitignore` file in the root of your branch with the following template:
```
*/**
!*/*.{source_extension}
```
This file will ignore all files first and then whitelist files with your `source_extension` only. For example, c++ coders would replace `{source_extension}` with `cpp`.
## Tips
* [Join our leaderboard](https://adventofcode.com/2022/leaderboard/private) with the join code `1498937-6440e4da`
* Modify the readme of your branch to include build and run instructions
* Once the challenges from Advent of Code become more complicated, consider an explanation document (make sure this document isn't ignored by your `.gitignore` configuration)
Each day is broken up into it's own folder. All code is written in Rust, and will not be published.