Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
SKTT1Ryze committed Oct 25, 2023
1 parent 9be6e45 commit 34c6b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leetcode/src/solutions/reverse_integer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl SolutionImpl {

while x != 0 {
residue = x % 10;
x = x / 10;
x /= 10;

v.push(residue);
}
Expand Down

0 comments on commit 34c6b28

Please sign in to comment.