We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#[expect(clippy::needless_range_loop)]
1 parent b25133f commit e59aa8fCopy full SHA for e59aa8f
src/problem_0048_rotate_image/reverse_then_transpose.rs
@@ -12,7 +12,6 @@ impl Solution {
12
for row_plus_1 in 1..n {
13
let row = row_plus_1 - 1;
14
15
- #[expect(clippy::needless_range_loop, reason = "false positive")]
16
for column in row_plus_1..n {
17
let temp = matrix[row][column];
18
0 commit comments