Compare commits
3 Commits
666fdea266
...
justi
| Author | SHA1 | Date | |
|---|---|---|---|
| bc8d46dbc8 | |||
| f59de48e85 | |||
| 4e8c51769e |
@@ -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
File diff suppressed because it is too large
Load Diff
@@ -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();
|
||||
|
||||
}
|
||||
@@ -1,13 +1,7 @@
|
||||
# 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.
|
||||
|
||||
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.
|
||||
Each day is broken up into it's own folder. All code is written in Rust, and will not be published.
|
||||
Reference in New Issue
Block a user