Skip to content

Commit ef8f7f3

Browse files
authored
Improved task 2836
1 parent fed737a commit ef8f7f3

File tree

1 file changed

+13
-13
lines changed
  • src/main/kotlin/g2801_2900/s2836_maximize_value_of_function_in_a_ball_passing_game

1 file changed

+13
-13
lines changed

src/main/kotlin/g2801_2900/s2836_maximize_value_of_function_in_a_ball_passing_game/readme.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Return _an integer denoting the **maximum** value of the function._
2121

2222
**Example 1:**
2323

24-
\| Pass Number \| Sender ID \| Receiver ID \| x + Receiver IDs
25-
\|-------------\|-----------\|-------------\|-----------------
26-
\| <!-- --> \| <!-- --> \| <!-- --> \| 2
27-
\| 1 \| 2 \| 1 \| 3
28-
\| 2 \| 1 \| 0 \| 3
29-
\| 3 \| 0 \| 2 \| 5
30-
\| 4 \| 2 \| 1 \| 6
24+
| Pass Number | Sender ID | Receiver ID | x + Receiver IDs
25+
|-------------|-----------|-------------|-----------------
26+
| <!-- --> | <!-- --> | <!-- --> | 2
27+
| 1 | 2 | 1 | 3
28+
| 2 | 1 | 0 | 3
29+
| 3 | 0 | 2 | 5
30+
| 4 | 2 | 1 | 6
3131

3232
**Input:** receiver = [2,0,1], k = 4
3333

@@ -37,12 +37,12 @@ Return _an integer denoting the **maximum** value of the function._
3737

3838
**Example 2:**
3939

40-
\| Pass Number \| Sender ID \| Receiver ID \| x + Receiver IDs
41-
\|-------------\|-----------\|-------------\|-----------------
42-
\| <!-- --> \| <!-- --> \| <!-- --> \| 4
43-
\| 1 \| 4 \| 3 \| 7
44-
\| 2 \| 3 \| 2 \| 9
45-
\| 3 \| 2 \| 1 \| 10
40+
| Pass Number | Sender ID | Receiver ID | x + Receiver IDs
41+
|-------------|-----------|-------------|-----------------
42+
| <!-- --> | <!-- --> | <!-- --> | 4
43+
| 1 | 4 | 3 | 7
44+
| 2 | 3 | 2 | 9
45+
| 3 | 2 | 1 | 10
4646

4747
**Input:** receiver = [1,1,1,2,3], k = 3
4848

0 commit comments

Comments
 (0)