a few days
This commit is contained in:
7
d20/Cargo.lock
generated
Normal file
7
d20/Cargo.lock
generated
Normal file
@ -0,0 +1,7 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "d05"
|
||||
version = "0.1.0"
|
5000
d20/input.txt
5000
d20/input.txt
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,95 @@
|
||||
|
||||
pub fn run(inp :Vec<String>) {
|
||||
|
||||
}
|
||||
fn decript_message(mut mes: Vec<(i32, usize)>) -> Vec<(i32, usize)> {
|
||||
|
||||
|
||||
let n = mes.len();
|
||||
let mut index = 0;
|
||||
|
||||
while index < n {
|
||||
|
||||
// look for current index
|
||||
let i = mes.iter().position(|elem| elem.1 == index).unwrap();
|
||||
|
||||
let e = mes[i].0;
|
||||
let rang_num = mes[i].1;
|
||||
|
||||
if e == 0 {
|
||||
println!("{}, {}, {}", e, i, rang_num);
|
||||
}
|
||||
|
||||
if e > 0 {
|
||||
|
||||
|
||||
let mut new_index = i as i32 + e;
|
||||
|
||||
//let mut to_add = new_index;
|
||||
//while {
|
||||
// to_add /= mes.len() as i32;
|
||||
// to_add >= mes.len() as i32
|
||||
//} {}
|
||||
|
||||
//new_index = (new_index % mes.len() as i32) + to_add;
|
||||
|
||||
|
||||
while new_index >= mes.len() as i32 {
|
||||
new_index -= mes.len() as i32;
|
||||
new_index += 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
mes.remove(i);
|
||||
mes.insert(new_index as usize, (e, rang_num));
|
||||
|
||||
|
||||
} else if e < 0 {
|
||||
|
||||
let mut new_index = i as i32 + e;
|
||||
//let to_sub = new_index.abs() / mes.len() as i32;
|
||||
//new_index = (new_index % mes.len() as i32) - to_sub;
|
||||
while new_index < 0 {
|
||||
new_index += mes.len() as i32;
|
||||
new_index -= 1;
|
||||
}
|
||||
|
||||
mes.remove(i);
|
||||
mes.insert(new_index as usize, (e, rang_num));
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
index += 1;
|
||||
|
||||
}
|
||||
|
||||
|
||||
mes
|
||||
|
||||
}
|
||||
|
||||
pub fn run(inp: Vec<String>) {
|
||||
let parsed_inp: Vec<(i32, usize)> = inp
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|elem| (elem.1.parse::<i32>().unwrap(), elem.0))
|
||||
.collect();
|
||||
|
||||
|
||||
let decripted_message = decript_message(parsed_inp);
|
||||
println!("{:?}", decripted_message);
|
||||
|
||||
// find index of 0:
|
||||
for (i, e) in decripted_message.iter().enumerate() {
|
||||
if e.0 == 0 {
|
||||
let a = decripted_message[(i + 1000) % decripted_message.len()].0;
|
||||
let b = decripted_message[(i + 2000) % decripted_message.len()].0;
|
||||
let c = decripted_message[(i + 3000) % decripted_message.len()].0;
|
||||
|
||||
println!("a:{}; b:{}, c:{}", a, b, c);
|
||||
|
||||
println!("a1: {}", a + b + c);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
107
d20/src/a2.rs
107
d20/src/a2.rs
@ -1,5 +1,106 @@
|
||||
|
||||
|
||||
pub fn run(inp :Vec<String>) {
|
||||
fn decript_message(mut mes: Vec<(i64, usize)>) -> Vec<(i64, usize)> {
|
||||
|
||||
}
|
||||
let n = mes.len();
|
||||
|
||||
for _ in 0..10 {
|
||||
|
||||
let mut index = 0;
|
||||
|
||||
while index < n {
|
||||
|
||||
// look for current index
|
||||
let i = mes.iter().position(|elem| elem.1 == index).unwrap();
|
||||
|
||||
let e = mes[i].0;
|
||||
let rang_num = mes[i].1;
|
||||
|
||||
if e == 0 {
|
||||
println!("{}, {}, {}", e, i, rang_num);
|
||||
}
|
||||
|
||||
if e > 0 {
|
||||
|
||||
|
||||
let mut new_index = i as i64 + e;
|
||||
|
||||
|
||||
/*
|
||||
let mut to_add = new_index / mes.len() as i64;
|
||||
while {
|
||||
to_add = to_add / mes.len() as i64;
|
||||
to_add >= mes.len() as i64
|
||||
|
||||
} {}
|
||||
*/
|
||||
|
||||
//let to_add = new_index / mes.len() as i64;
|
||||
//new_index = (new_index % mes.len() as i64) + to_add;
|
||||
|
||||
/*
|
||||
while new_index >= mes.len() as i64 {
|
||||
new_index -= mes.len() as i64;
|
||||
new_index += 1;
|
||||
}
|
||||
*/
|
||||
mes.remove(i);
|
||||
mes.insert(new_index as usize, (e, rang_num));
|
||||
|
||||
|
||||
} else if e < 0 {
|
||||
|
||||
let mut new_index = i as i64 + e;
|
||||
//let to_sub = new_index.abs() / mes.len() as i64;
|
||||
//new_index = (new_index % mes.len() as i64) - to_sub;
|
||||
|
||||
while new_index < 0 {
|
||||
new_index += mes.len() as i64;
|
||||
new_index -= 1;
|
||||
}
|
||||
|
||||
mes.remove(i);
|
||||
mes.insert(new_index as usize, (e, rang_num));
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
index += 1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
mes
|
||||
|
||||
}
|
||||
|
||||
pub fn run(inp: Vec<String>) {
|
||||
const DECRIPTION_KEY :i64 = 811589153;
|
||||
|
||||
let parsed_inp: Vec<(i64, usize)> = inp
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|elem| (elem.1.parse::<i64>().unwrap() * DECRIPTION_KEY, elem.0))
|
||||
.collect();
|
||||
|
||||
|
||||
let decripted_message = decript_message(parsed_inp);
|
||||
|
||||
println!("{:?}", decripted_message);
|
||||
|
||||
|
||||
// find index of 0:
|
||||
for (i, e) in decripted_message.iter().enumerate() {
|
||||
if e.0 == 0 {
|
||||
let a = decripted_message[(i + 1000) % decripted_message.len()].0;
|
||||
let b = decripted_message[(i + 2000) % decripted_message.len()].0;
|
||||
let c = decripted_message[(i + 3000) % decripted_message.len()].0;
|
||||
|
||||
println!("a:{}; b:{}, c:{}", a, b, c);
|
||||
|
||||
println!("a2: {}", a + b + c);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ use std::io::BufRead;
|
||||
mod a1;
|
||||
mod a2;
|
||||
|
||||
fn read_file(path :&str) -> Vec<String> {
|
||||
pub fn read_file(path :&str) -> Vec<String> {
|
||||
|
||||
let file = std::fs::File::open(path);
|
||||
|
||||
@ -32,7 +32,7 @@ fn read_file(path :&str) -> Vec<String> {
|
||||
|
||||
fn main() {
|
||||
|
||||
let inp :Vec<String> = read_file("input.txt");
|
||||
let inp :Vec<String> = read_file("test_input.txt");
|
||||
|
||||
a1::run(inp.clone());
|
||||
|
||||
|
1
d20/target/.rustc_info.json
Normal file
1
d20/target/.rustc_info.json
Normal file
@ -0,0 +1 @@
|
||||
{"rustc_fingerprint":15594459422025777716,"outputs":{"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\tfuec\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.65.0 (897e37553 2022-11-02)\nbinary: rustc\ncommit-hash: 897e37553bba8b42751c67658967889d11ecd120\ncommit-date: 2022-11-02\nhost: x86_64-pc-windows-msvc\nrelease: 1.65.0\nLLVM version: 15.0.0\n","stderr":""},"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\n","stderr":""}},"successes":{}}
|
3
d20/target/CACHEDIR.TAG
Normal file
3
d20/target/CACHEDIR.TAG
Normal file
@ -0,0 +1,3 @@
|
||||
Signature: 8a477f597d28d172789f06886806bc55
|
||||
# This file is a cache directory tag created by cargo.
|
||||
# For information about cache directory tags see https://bford.info/cachedir/
|
0
d20/target/debug/.cargo-lock
Normal file
0
d20/target/debug/.cargo-lock
Normal file
@ -0,0 +1 @@
|
||||
dda6f1571d6b940d
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":7309141686862299243,"path":1684066648322511884,"deps":[[16773918767652834943,"d05",false,14445198369554900540]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-143dbec8b262d826\\dep-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
BIN
d20/target/debug/.fingerprint/d05-143dbec8b262d826/dep-bin-d05
Normal file
BIN
d20/target/debug/.fingerprint/d05-143dbec8b262d826/dep-bin-d05
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
5a51e47a2f527b82
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":1021633075455700787,"path":1684066648322511884,"deps":[[16773918767652834943,"d05",false,14445198369554900540]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-147b0d3571ebaede\\dep-test-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,4 @@
|
||||
{"message":"found module declaration for main.rs","code":{"code":"special_module_name","explanation":null},"level":"warning","spans":[{"file_name":"src\\lib.rs","byte_start":2028,"byte_end":2037,"line_start":92,"line_end":92,"column_start":1,"column_end":10,"is_primary":true,"text":[{"text":"mod main;","highlight_start":1,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(special_module_name)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"a binary crate cannot be used as library","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: found module declaration for main.rs\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:92:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m92\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mmod main;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(special_module_name)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: a binary crate cannot be used as library\u001b[0m\n\n"}
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `main` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":488,"byte_end":492,"line_start":33,"line_end":33,"column_start":4,"column_end":8,"is_primary":true,"text":[{"text":"fn main() {","highlight_start":4,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `main` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:33:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn main() {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"3 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 3 warnings emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
9deeff8be5f9d189
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":13705889145607888431,"profile":1021633075455700787,"path":17523903030608720598,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-2c29e5628277c32e\\dep-test-lib-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,4 @@
|
||||
{"message":"found module declaration for main.rs","code":{"code":"special_module_name","explanation":null},"level":"warning","spans":[{"file_name":"src\\lib.rs","byte_start":2028,"byte_end":2037,"line_start":92,"line_end":92,"column_start":1,"column_end":10,"is_primary":true,"text":[{"text":"mod main;","highlight_start":1,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(special_module_name)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"a binary crate cannot be used as library","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: found module declaration for main.rs\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:92:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m92\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mmod main;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(special_module_name)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: a binary crate cannot be used as library\u001b[0m\n\n"}
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `main` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":488,"byte_end":492,"line_start":33,"line_end":33,"column_start":4,"column_end":8,"is_primary":true,"text":[{"text":"fn main() {","highlight_start":4,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `main` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:33:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn main() {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"3 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 3 warnings emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
eebd93a41695f34a
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":13705889145607888431,"profile":17729903187224061422,"path":17523903030608720598,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-4652ea53d40fe7da\\dep-test-lib-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
BIN
d20/target/debug/.fingerprint/d05-4e9e972b5101d62c/dep-lib-d05
Normal file
BIN
d20/target/debug/.fingerprint/d05-4e9e972b5101d62c/dep-lib-d05
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
0e18eb3a355163d5
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":13705889145607888431,"profile":9251013656241001069,"path":17523903030608720598,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-4e9e972b5101d62c\\dep-lib-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1,5 @@
|
||||
{"message":"found module declaration for main.rs","code":{"code":"special_module_name","explanation":null},"level":"warning","spans":[{"file_name":"src\\lib.rs","byte_start":2028,"byte_end":2037,"line_start":92,"line_end":92,"column_start":1,"column_end":10,"is_primary":true,"text":[{"text":"mod main;","highlight_start":1,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(special_module_name)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"a binary crate cannot be used as library","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: found module declaration for main.rs\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:92:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m92\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mmod main;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(special_module_name)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: a binary crate cannot be used as library\u001b[0m\n\n"}
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `read_file` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":54,"byte_end":63,"line_start":6,"line_end":6,"column_start":8,"column_end":17,"is_primary":true,"text":[{"text":"pub fn read_file(path :&str) -> Vec<String> {","highlight_start":8,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `read_file` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:6:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn read_file(path :&str) -> Vec<String> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `main` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":488,"byte_end":492,"line_start":33,"line_end":33,"column_start":4,"column_end":8,"is_primary":true,"text":[{"text":"fn main() {","highlight_start":4,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `main` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:33:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn main() {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^\u001b[0m\n\n"}
|
||||
{"message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 4 warnings emitted\u001b[0m\n\n"}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
9dfd6b9af6f5fe1a
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":17729903187224061422,"path":1684066648322511884,"deps":[[16773918767652834943,"d05",false,15376222841836607502]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-50e5fb8863caff3e\\dep-test-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
a62220af2acc103e
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":7309141686862299243,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-54bad1502471c435\\dep-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
BIN
d20/target/debug/.fingerprint/d05-54bad1502471c435/dep-bin-d05
Normal file
BIN
d20/target/debug/.fingerprint/d05-54bad1502471c435/dep-bin-d05
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"src\\a2.rs","byte_start":529,"byte_end":542,"line_start":25,"line_end":25,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":" let mut new_index = i as i64 + e;","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"src\\a2.rs","byte_start":529,"byte_end":533,"line_start":25,"line_end":25,"column_start":21,"column_end":25,"is_primary":true,"text":[{"text":" let mut new_index = i as i64 + e;","highlight_start":21,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\a2.rs:25:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut new_index = i as i64 + e;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m----\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
e737b342d3e62e08
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":9251013656241001069,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-60235cbe9d69ff8a\\dep-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
BIN
d20/target/debug/.fingerprint/d05-60235cbe9d69ff8a/dep-bin-d05
Normal file
BIN
d20/target/debug/.fingerprint/d05-60235cbe9d69ff8a/dep-bin-d05
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
BIN
d20/target/debug/.fingerprint/d05-77c9d37c0ca5926a/dep-lib-d05
Normal file
BIN
d20/target/debug/.fingerprint/d05-77c9d37c0ca5926a/dep-lib-d05
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
3c265f1762a777c8
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":13705889145607888431,"profile":7309141686862299243,"path":17523903030608720598,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-77c9d37c0ca5926a\\dep-lib-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1,5 @@
|
||||
{"message":"found module declaration for main.rs","code":{"code":"special_module_name","explanation":null},"level":"warning","spans":[{"file_name":"src\\lib.rs","byte_start":2028,"byte_end":2037,"line_start":92,"line_end":92,"column_start":1,"column_end":10,"is_primary":true,"text":[{"text":"mod main;","highlight_start":1,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(special_module_name)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"a binary crate cannot be used as library","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: found module declaration for main.rs\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:92:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m92\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mmod main;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(special_module_name)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: a binary crate cannot be used as library\u001b[0m\n\n"}
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":510,"byte_end":513,"line_start":35,"line_end":35,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let inp :Vec<String> = read_file(\"input.txt\"); ","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:35:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m35\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let inp :Vec<String> = read_file(\"input.txt\"); \u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `read_file` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":54,"byte_end":63,"line_start":6,"line_end":6,"column_start":8,"column_end":17,"is_primary":true,"text":[{"text":"pub fn read_file(path :&str) -> Vec<String> {","highlight_start":8,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `read_file` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:6:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn read_file(path :&str) -> Vec<String> {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"function `main` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":488,"byte_end":492,"line_start":33,"line_end":33,"column_start":4,"column_end":8,"is_primary":true,"text":[{"text":"fn main() {","highlight_start":4,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: function `main` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:33:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m33\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn main() {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^\u001b[0m\n\n"}
|
||||
{"message":"4 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 4 warnings emitted\u001b[0m\n\n"}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"src\\a2.rs","byte_start":529,"byte_end":542,"line_start":25,"line_end":25,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":" let mut new_index = i as i64 + e;","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"src\\a2.rs","byte_start":529,"byte_end":533,"line_start":25,"line_end":25,"column_start":21,"column_end":25,"is_primary":true,"text":[{"text":" let mut new_index = i as i64 + e;","highlight_start":21,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\a2.rs:25:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut new_index = i as i64 + e;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m----\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
f0fa31a79957e157
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":1021633075455700787,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-cd6375c08847f9de\\dep-test-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1,2 @@
|
||||
{"message":"unused variable: `inp`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src\\a2.rs","byte_start":15,"byte_end":18,"line_start":3,"line_end":3,"column_start":12,"column_end":15,"is_primary":true,"text":[{"text":"pub fn run(inp :Vec<String>) {","highlight_start":12,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src\\a2.rs","byte_start":15,"byte_end":18,"line_start":3,"line_end":3,"column_start":12,"column_end":15,"is_primary":true,"text":[{"text":"pub fn run(inp :Vec<String>) {","highlight_start":12,"highlight_end":15}],"label":null,"suggested_replacement":"_inp","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused variable: `inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\a2.rs:3:12\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub fn run(inp :Vec<String>) {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11mhelp: if this is intentional, prefix it with an underscore: `_inp`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_variables)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
@ -0,0 +1 @@
|
||||
0d7e854818e28c48
|
@ -0,0 +1 @@
|
||||
{"rustc":2347157018072859861,"features":"[]","target":16997346216964277088,"profile":17729903187224061422,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\d05-f895f0c441658393\\dep-test-bin-d05"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
1
d20/target/debug/d05.d
Normal file
1
d20/target/debug/d05.d
Normal file
@ -0,0 +1 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\d05.exe: C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\src\a1.rs C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\src\a2.rs C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\src\main.rs
|
BIN
d20/target/debug/d05.exe
Normal file
BIN
d20/target/debug/d05.exe
Normal file
Binary file not shown.
BIN
d20/target/debug/d05.pdb
Normal file
BIN
d20/target/debug/d05.pdb
Normal file
Binary file not shown.
5
d20/target/debug/deps/d05-143dbec8b262d826.d
Normal file
5
d20/target/debug/deps/d05-143dbec8b262d826.d
Normal file
@ -0,0 +1,5 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-143dbec8b262d826.rmeta: src\main.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-143dbec8b262d826.d: src\main.rs
|
||||
|
||||
src\main.rs:
|
5
d20/target/debug/deps/d05-147b0d3571ebaede.d
Normal file
5
d20/target/debug/deps/d05-147b0d3571ebaede.d
Normal file
@ -0,0 +1,5 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-147b0d3571ebaede.rmeta: src\main.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-147b0d3571ebaede.d: src\main.rs
|
||||
|
||||
src\main.rs:
|
6
d20/target/debug/deps/d05-2c29e5628277c32e.d
Normal file
6
d20/target/debug/deps/d05-2c29e5628277c32e.d
Normal file
@ -0,0 +1,6 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-2c29e5628277c32e.rmeta: src\lib.rs src\main.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-2c29e5628277c32e.d: src\lib.rs src\main.rs
|
||||
|
||||
src\lib.rs:
|
||||
src\main.rs:
|
6
d20/target/debug/deps/d05-4652ea53d40fe7da.d
Normal file
6
d20/target/debug/deps/d05-4652ea53d40fe7da.d
Normal file
@ -0,0 +1,6 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-4652ea53d40fe7da.exe: src\lib.rs src\main.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-4652ea53d40fe7da.d: src\lib.rs src\main.rs
|
||||
|
||||
src\lib.rs:
|
||||
src\main.rs:
|
BIN
d20/target/debug/deps/d05-4652ea53d40fe7da.exe
Normal file
BIN
d20/target/debug/deps/d05-4652ea53d40fe7da.exe
Normal file
Binary file not shown.
BIN
d20/target/debug/deps/d05-4652ea53d40fe7da.pdb
Normal file
BIN
d20/target/debug/deps/d05-4652ea53d40fe7da.pdb
Normal file
Binary file not shown.
8
d20/target/debug/deps/d05-4e9e972b5101d62c.d
Normal file
8
d20/target/debug/deps/d05-4e9e972b5101d62c.d
Normal file
@ -0,0 +1,8 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-4e9e972b5101d62c.rmeta: src\lib.rs src\main.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\libd05-4e9e972b5101d62c.rlib: src\lib.rs src\main.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-4e9e972b5101d62c.d: src\lib.rs src\main.rs
|
||||
|
||||
src\lib.rs:
|
||||
src\main.rs:
|
5
d20/target/debug/deps/d05-50e5fb8863caff3e.d
Normal file
5
d20/target/debug/deps/d05-50e5fb8863caff3e.d
Normal file
@ -0,0 +1,5 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-50e5fb8863caff3e.exe: src\main.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-50e5fb8863caff3e.d: src\main.rs
|
||||
|
||||
src\main.rs:
|
BIN
d20/target/debug/deps/d05-50e5fb8863caff3e.exe
Normal file
BIN
d20/target/debug/deps/d05-50e5fb8863caff3e.exe
Normal file
Binary file not shown.
BIN
d20/target/debug/deps/d05-50e5fb8863caff3e.pdb
Normal file
BIN
d20/target/debug/deps/d05-50e5fb8863caff3e.pdb
Normal file
Binary file not shown.
7
d20/target/debug/deps/d05-54bad1502471c435.d
Normal file
7
d20/target/debug/deps/d05-54bad1502471c435.d
Normal file
@ -0,0 +1,7 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-54bad1502471c435.rmeta: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-54bad1502471c435.d: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
src\main.rs:
|
||||
src\a1.rs:
|
||||
src\a2.rs:
|
6
d20/target/debug/deps/d05-77c9d37c0ca5926a.d
Normal file
6
d20/target/debug/deps/d05-77c9d37c0ca5926a.d
Normal file
@ -0,0 +1,6 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-77c9d37c0ca5926a.rmeta: src\lib.rs src\main.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-77c9d37c0ca5926a.d: src\lib.rs src\main.rs
|
||||
|
||||
src\lib.rs:
|
||||
src\main.rs:
|
7
d20/target/debug/deps/d05-cd6375c08847f9de.d
Normal file
7
d20/target/debug/deps/d05-cd6375c08847f9de.d
Normal file
@ -0,0 +1,7 @@
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-cd6375c08847f9de.rmeta: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
c:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-cd6375c08847f9de.d: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
src\main.rs:
|
||||
src\a1.rs:
|
||||
src\a2.rs:
|
7
d20/target/debug/deps/d05-f895f0c441658393.d
Normal file
7
d20/target/debug/deps/d05-f895f0c441658393.d
Normal file
@ -0,0 +1,7 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-f895f0c441658393.exe: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05-f895f0c441658393.d: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
src\main.rs:
|
||||
src\a1.rs:
|
||||
src\a2.rs:
|
BIN
d20/target/debug/deps/d05-f895f0c441658393.exe
Normal file
BIN
d20/target/debug/deps/d05-f895f0c441658393.exe
Normal file
Binary file not shown.
BIN
d20/target/debug/deps/d05-f895f0c441658393.pdb
Normal file
BIN
d20/target/debug/deps/d05-f895f0c441658393.pdb
Normal file
Binary file not shown.
7
d20/target/debug/deps/d05.d
Normal file
7
d20/target/debug/deps/d05.d
Normal file
@ -0,0 +1,7 @@
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05.exe: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
C:\personal\Programmierdaten\rust\advent_of_code\y2022\d20\target\debug\deps\d05.d: src\main.rs src\a1.rs src\a2.rs
|
||||
|
||||
src\main.rs:
|
||||
src\a1.rs:
|
||||
src\a2.rs:
|
BIN
d20/target/debug/deps/d05.exe
Normal file
BIN
d20/target/debug/deps/d05.exe
Normal file
Binary file not shown.
BIN
d20/target/debug/deps/d05.pdb
Normal file
BIN
d20/target/debug/deps/d05.pdb
Normal file
Binary file not shown.
0
d20/target/debug/deps/libd05-143dbec8b262d826.rmeta
Normal file
0
d20/target/debug/deps/libd05-143dbec8b262d826.rmeta
Normal file
0
d20/target/debug/deps/libd05-147b0d3571ebaede.rmeta
Normal file
0
d20/target/debug/deps/libd05-147b0d3571ebaede.rmeta
Normal file
0
d20/target/debug/deps/libd05-2c29e5628277c32e.rmeta
Normal file
0
d20/target/debug/deps/libd05-2c29e5628277c32e.rmeta
Normal file
BIN
d20/target/debug/deps/libd05-4e9e972b5101d62c.rlib
Normal file
BIN
d20/target/debug/deps/libd05-4e9e972b5101d62c.rlib
Normal file
Binary file not shown.
BIN
d20/target/debug/deps/libd05-4e9e972b5101d62c.rmeta
Normal file
BIN
d20/target/debug/deps/libd05-4e9e972b5101d62c.rmeta
Normal file
Binary file not shown.
0
d20/target/debug/deps/libd05-54bad1502471c435.rmeta
Normal file
0
d20/target/debug/deps/libd05-54bad1502471c435.rmeta
Normal file
BIN
d20/target/debug/deps/libd05-77c9d37c0ca5926a.rmeta
Normal file
BIN
d20/target/debug/deps/libd05-77c9d37c0ca5926a.rmeta
Normal file
Binary file not shown.
0
d20/target/debug/deps/libd05-cd6375c08847f9de.rmeta
Normal file
0
d20/target/debug/deps/libd05-cd6375c08847f9de.rmeta
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user