Skip to content

Commit b96b7ad

Browse files
committed
Add comments to some examples
1 parent 4b9ffea commit b96b7ad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/abc073-d.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::ops::Sub;
1313

1414
fn main() {
1515
input! {
16-
_n: usize,
16+
_n: usize, // `proconio` does not accept `_` as a variable name until v0.3.5.
1717
m: usize,
1818
r: usize,
1919
rs: [NodeIndex1<u32>; r],

examples/abc118-b-proconio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::ops::{BitAnd, BitOr};
88
fn main() {
99
input! {
1010
n: usize,
11-
_m: usize,
11+
_m: usize, // `proconio` does not accept `_` as a variable name until v0.3.5.
1212
a: [[Usize1]; n],
1313
}
1414

examples/abc129-f.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn main() {
1616
l: u64,
1717
a: u64,
1818
b: u64,
19-
_m: Mod,
19+
_m: Mod, // `proconio` does not accept `_` as a variable name until v0.3.5.
2020
}
2121

2222
let count = |d| -> _ {

0 commit comments

Comments
 (0)