@@ -70,11 +70,11 @@ pub fn shuffle(nums: Vec<i32>, n: i32) -> Vec<i32> {
70
70
let mut nums = nums;
71
71
let n = n as usize ;
72
72
for i in 0 ..n {
73
- nums[ 2 * i] = nums [ 2 * i ] | ( ( nums[ i] & 1023 ) << 10 ) ;
74
- nums[ 2 * i + 1 ] = nums [ 2 * i + 1 ] | ( ( nums[ i + n] & 1023 ) << 10 ) ;
73
+ nums[ 2 * i] |= ( nums[ i] & 1023 ) << 10 ;
74
+ nums[ 2 * i + 1 ] |= ( nums[ i + n] & 1023 ) << 10 ;
75
75
}
76
76
nums. iter_mut ( ) . for_each ( |num| {
77
- * num = * num >> 10 ;
77
+ * num >>= 10 ;
78
78
} ) ;
79
79
nums
80
80
}
@@ -101,7 +101,7 @@ pub fn num_special(mat: Vec<Vec<i32>>) -> i32 {
101
101
return false ;
102
102
}
103
103
}
104
- return true ;
104
+ true
105
105
}
106
106
107
107
let mut cnt = 0 ;
@@ -150,7 +150,6 @@ pub fn construct_array(n: i32, k: i32) -> Vec<i32> {
150
150
/// [412. Fizz Buzz](https://leetcode.cn/problems/fizz-buzz/)
151
151
pub fn fizz_buzz ( n : i32 ) -> Vec < String > {
152
152
( 1 ..=n)
153
- . into_iter ( )
154
153
. map ( |num| {
155
154
if num % 3 == 0 && num % 5 == 0 {
156
155
"FizzBuzz" . to_string ( )
@@ -194,7 +193,7 @@ pub fn fizz_buzz(n: i32) -> Vec<String> {
194
193
/// 注意: 如果原本为0, 这时 `31 - (leading_zero)`可能有溢出
195
194
///
196
195
pub fn number_of_steps ( num : i32 ) -> i32 {
197
- ( num. count_ones ( ) + 31u32 . checked_sub ( num. leading_zeros ( ) ) . unwrap_or ( 0 ) ) as i32
196
+ ( num. count_ones ( ) + 31u32 . saturating_sub ( num. leading_zeros ( ) ) ) as i32
198
197
}
199
198
200
199
/// [829. 连续整数求和](https://leetcode.cn/problems/consecutive-numbers-sum/)
@@ -329,15 +328,15 @@ pub fn unique_letter_string(s: String) -> i32 {
329
328
let pos = pos as i32 ;
330
329
if curr_pos[ i] > -1 {
331
330
// 这个字符之前出现过, 这时的pos对应上述推导中的后一个
332
- ans = ans + ( pos - curr_pos[ i] ) * ( curr_pos[ i] - last_pos[ i] ) ;
331
+ ans += ( pos - curr_pos[ i] ) * ( curr_pos[ i] - last_pos[ i] ) ;
333
332
}
334
333
last_pos[ i] = curr_pos[ i] ;
335
334
curr_pos[ i] = pos;
336
335
}
337
336
// 对于只出现过一次的字符, 上面循环统计不到, 即等效 后一个 的位置为字符结尾
338
337
for ( last, curr) in last_pos. into_iter ( ) . zip ( curr_pos. into_iter ( ) ) {
339
338
if curr > -1 {
340
- ans = ans + ( curr - last) * ( s. len ( ) as i32 - curr) ;
339
+ ans += ( curr - last) * ( s. len ( ) as i32 - curr) ;
341
340
}
342
341
}
343
342
ans
@@ -363,7 +362,7 @@ pub fn largest_overlap(img1: Vec<Vec<i32>>, img2: Vec<Vec<i32>>) -> i32 {
363
362
}
364
363
}
365
364
}
366
- delta. values ( ) . into_iter ( ) . max ( ) . copied ( ) . unwrap_or ( 0 )
365
+ delta. values ( ) . max ( ) . copied ( ) . unwrap_or ( 0 )
367
366
}
368
367
369
368
/// [836. 矩形重叠](https://leetcode.cn/problems/rectangle-overlap/)
@@ -488,15 +487,15 @@ pub fn mirror_reflection(p: i32, q: i32) -> i32 {
488
487
} else if ( d / q) % 2 == 0 {
489
488
return 2 ;
490
489
}
491
- return 1 ;
490
+ 1
492
491
}
493
492
494
493
fn gcd ( a : i32 , b : i32 ) -> i32 {
495
494
let ( m, n) = ( a. max ( b) , a. min ( b) ) ;
496
495
if n == 0 {
497
496
return m;
498
497
}
499
- return gcd ( n, m % n) ;
498
+ gcd ( n, m % n)
500
499
}
501
500
fn lcm ( a : i32 , b : i32 ) -> i32 {
502
501
a * b / gcd ( a, b)
@@ -511,7 +510,7 @@ pub fn transpose(matrix: Vec<Vec<i32>>) -> Vec<Vec<i32>> {
511
510
ret[ j] [ i] = matrix[ i] [ j] ;
512
511
}
513
512
}
514
- return ret;
513
+ ret
515
514
}
516
515
517
516
/// [LCP 06. 拿硬币](https://leetcode.cn/problems/na-ying-bi)
@@ -882,8 +881,7 @@ mod tests {
882
881
expect : & ' static [ i32 ] ,
883
882
}
884
883
885
- vec ! [
886
- TestCase {
884
+ [ TestCase {
887
885
name : "basic 1" ,
888
886
n : 3 ,
889
887
k : 1 ,
@@ -894,8 +892,7 @@ mod tests {
894
892
n : 3 ,
895
893
k : 2 ,
896
894
expect : & [ 1 , 3 , 2 ] ,
897
- } ,
898
- ]
895
+ } ]
899
896
. iter ( )
900
897
. for_each ( |testcase| {
901
898
let acutal = construct_array ( testcase. n , testcase. k ) ;
@@ -911,8 +908,7 @@ mod tests {
911
908
expect : i32 ,
912
909
}
913
910
914
- vec ! [
915
- TestCase {
911
+ [ TestCase {
916
912
name : "basic 1" ,
917
913
mat : & [ & [ 1 , 0 , 0 ] , & [ 0 , 0 , 1 ] , & [ 1 , 0 , 0 ] ] ,
918
914
expect : 1 ,
@@ -926,8 +922,7 @@ mod tests {
926
922
name : "basic 3" ,
927
923
mat : & [ & [ 0 , 0 , 0 , 1 ] , & [ 1 , 0 , 0 , 0 ] , & [ 0 , 1 , 1 , 0 ] , & [ 0 , 0 , 0 , 0 ] ] ,
928
924
expect : 2 ,
929
- } ,
930
- ]
925
+ } ]
931
926
. iter ( )
932
927
. for_each ( |testcase| {
933
928
let mat = testcase. mat . iter ( ) . map ( |line| line. to_vec ( ) ) . collect ( ) ;
@@ -945,8 +940,7 @@ mod tests {
945
940
expect : & ' static [ i32 ] ,
946
941
}
947
942
948
- vec ! [
949
- TestCase {
943
+ [ TestCase {
950
944
name : "basic 1" ,
951
945
nums : & [ 2 , 5 , 1 , 3 , 4 , 7 ] ,
952
946
n : 3 ,
@@ -963,8 +957,7 @@ mod tests {
963
957
nums : & [ 1 , 1 , 2 , 2 ] ,
964
958
n : 2 ,
965
959
expect : & [ 1 , 2 , 1 , 2 ] ,
966
- } ,
967
- ]
960
+ } ]
968
961
. iter ( )
969
962
. for_each ( |testcase| {
970
963
let actual = shuffle ( testcase. nums . to_vec ( ) , testcase. n ) ;
@@ -980,8 +973,7 @@ mod tests {
980
973
expect : i32 ,
981
974
}
982
975
983
- vec ! [
984
- TestCase {
976
+ [ TestCase {
985
977
name : "basic" ,
986
978
nums : & [ 1 , 2 , 3 ] ,
987
979
expect : 2 ,
@@ -1000,8 +992,7 @@ mod tests {
1000
992
name : "fix 1" ,
1001
993
nums : & [ 1 ] ,
1002
994
expect : 0 ,
1003
- } ,
1004
- ]
995
+ } ]
1005
996
. iter ( )
1006
997
. for_each ( |testcase| {
1007
998
let actual = min_moves2 ( testcase. nums . to_vec ( ) ) ;
0 commit comments