Skip to content

Commit

Permalink
recovery tool needs to trim oop s
Browse files Browse the repository at this point in the history
  • Loading branch information
ana_rchy committed May 31, 2024
1 parent 78895fb commit fd70416
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added leaderboard-recovery-tool/leaderboard.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion leaderboard-recovery-tool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn main() {
let mut input = String::new();
io::stdin().read_line(&mut input).expect("cant read input");

let mut params = input.split(",");
let mut params = input.trim_end().split(",");
let id = params.next().unwrap().parse::<u64>().unwrap();
let count = params.next().unwrap().parse::<u16>().unwrap();
leaderboard.insert(id, count);
Expand Down

0 comments on commit fd70416

Please sign in to comment.