@@ -21,33 +21,14 @@ Return an integer array denoting the _final state_ of `nums` after performing al
21
21
22
22
** Explanation:**
23
23
24
- Operation
25
-
26
- Result
27
-
28
- After operation 1
29
-
30
- [ 2, 2, 3, 5, 6]
31
-
32
- After operation 2
33
-
34
- [ 4, 2, 3, 5, 6]
35
-
36
- After operation 3
37
-
38
- [ 4, 4, 3, 5, 6]
39
-
40
- After operation 4
41
-
42
- [ 4, 4, 6, 5, 6]
43
-
44
- After operation 5
45
-
46
- [ 8, 4, 6, 5, 6]
47
-
48
- After applying modulo
49
-
50
- [ 8, 4, 6, 5, 6]
24
+ | Operation | Result |
25
+ | -------------------------| ------------------|
26
+ | After operation 1 | [ 2, 2, 3, 5, 6] |
27
+ | After operation 2 | [ 4, 2, 3, 5, 6] |
28
+ | After operation 3 | [ 4, 4, 3, 5, 6] |
29
+ | After operation 4 | [ 4, 4, 6, 5, 6] |
30
+ | After operation 5 | [ 8, 4, 6, 5, 6] |
31
+ | After applying modulo | [ 8, 4, 6, 5, 6] |
51
32
52
33
** Example 2:**
53
34
@@ -57,21 +38,11 @@ After applying modulo
57
38
58
39
** Explanation:**
59
40
60
- Operation
61
-
62
- Result
63
-
64
- After operation 1
65
-
66
- [ 100000, 2000000000]
67
-
68
- After operation 2
69
-
70
- [ 100000000000, 2000000000]
71
-
72
- After applying modulo
73
-
74
- [ 999999307, 999999993]
41
+ | Operation | Result |
42
+ | -------------------------| ----------------------|
43
+ | After operation 1 | [ 100000, 2000000000] |
44
+ | After operation 2 | [ 100000000000, 2000000000] |
45
+ | After applying modulo | [ 999999307, 999999993] |
75
46
76
47
** Constraints:**
77
48
0 commit comments