競技プログラミングの問題をRustで解こうとした際、
rust
1let a:Vec<u32> = Vec::new(); 2let n : u32 = 32 // 例えの値です 3for idx in 0..n { 4 let tmp_a = a[idx]; 5}
とすると、
error[E0277]: the type `[u32]` cannot be indexed by `u32` --> src/main.rs:25:21 | 25 | let tmp_a = a[idx]; | ^^^^^^ slice indices are of type `usize` or ranges of `usize` | = help: the trait `SliceIndex<[u32]>` is not implemented for `u32` = note: required because of the requirements on the impl of `Index<u32>` for `Vec<u32>` error: aborting due to previous error For more information about this error, try `rustc --explain E0277`. error: could not compile `abc185b` To learn more, run the command again with --verbose.
と出てしまいます。
これを回避する方法としては、
rust
1for (idx, tmp_a) in a.iter().enumerate() { 2 // ここに処理をかく 3}
のような処理を書く方法があると思いますが、ループの回数を指定して上記のループを書きたいと思ういました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/21 07:20