Update README.md
Browse files
README.md
CHANGED
|
@@ -139,7 +139,7 @@ In the third example,
|
|
| 139 |
```
|
| 140 |
solutions
|
| 141 |
```
|
| 142 |
-
|
| 143 |
from collections import deque
|
| 144 |
|
| 145 |
def solve(adj, m, k, uv):
|
|
@@ -198,6 +198,6 @@ for i in range(m):
|
|
| 198 |
|
| 199 |
res = solve(a, m, k, uv)
|
| 200 |
print(str(res)[1:-1].replace(' ', '').replace(',', '\n'))
|
| 201 |
-
|
| 202 |
```
|
| 203 |
|
|
|
|
| 139 |
```
|
| 140 |
solutions
|
| 141 |
```
|
| 142 |
+
```python
|
| 143 |
from collections import deque
|
| 144 |
|
| 145 |
def solve(adj, m, k, uv):
|
|
|
|
| 198 |
|
| 199 |
res = solve(a, m, k, uv)
|
| 200 |
print(str(res)[1:-1].replace(' ', '').replace(',', '\n'))
|
| 201 |
+
```
|
| 202 |
```
|
| 203 |
|