Skip to content

Commit adfbec5

Browse files
committed
Improved readme
1 parent 85cf6e2 commit adfbec5

File tree

1 file changed

+13
-42
lines changed
  • src/main/java/g3201_3300/s3266_final_array_state_after_k_multiplication_operations_ii

1 file changed

+13
-42
lines changed

src/main/java/g3201_3300/s3266_final_array_state_after_k_multiplication_operations_ii/readme.md

Lines changed: 13 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -21,33 +21,14 @@ Return an integer array denoting the _final state_ of `nums` after performing al
2121

2222
**Explanation:**
2323

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] |
5132

5233
**Example 2:**
5334

@@ -57,21 +38,11 @@ After applying modulo
5738

5839
**Explanation:**
5940

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] |
7546

7647
**Constraints:**
7748

0 commit comments

Comments
 (0)