Skip to content

Commit e93384e

Browse files
committed
Run cargo fmt.
1 parent 7a9472b commit e93384e

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

src/bin/c01p01.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ mod tests {
4545
assert_eq!(all_chars_unique_part_b(&String::from("abcdefg")), true);
4646
assert_eq!(all_chars_unique_part_b(&String::from("abcdefga")), false);
4747
}
48-
4948
}
5049

5150
fn main() {

src/bin/c02p06.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ mod tests {
185185
list4.append(2);
186186
assert_eq!(list4.is_palindrome(), false);
187187
}
188-
189188
}
190189

191190
fn main() {

src/bin/c02p07.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ mod tests {
152152
false
153153
);
154154
}
155-
156155
}
157156

158157
fn main() {

src/bin/c02p08.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ mod tests {
174174
assert_eq!(cycle_result2.is_some(), true);
175175
assert_eq!(cycle_result2.as_ref().unwrap().borrow().data, 'C');
176176
}
177-
178177
}
179178

180179
fn main() {

src/bin/c07p10.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,5 @@ fn main() {
194194
board.flag_square(0, 1);
195195
println!("{}", board);
196196
board.expose_square(3, 4);
197-
println!("{}", board);;
197+
println!("{}", board);
198198
}

0 commit comments

Comments
 (0)