Skip to content

Commit

Permalink
chore: fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAegis committed Nov 21, 2020
1 parent 6541744 commit b37b8b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/2019/day16/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ fn ftt(inp: &mut Vec<isize>, offset: usize) -> String {
impl aoclib::Solvable<&str, String> for PartOne {
fn solve(input: &str) -> aoclib::Solution<String> {
let mut a = input
.to_string()
.repeat(1)
.chars()
.map(|c| c.to_string().parse::<isize>().unwrap())
Expand Down

0 comments on commit b37b8b5

Please sign in to comment.