SSK-DNB commited on
Commit
7025841
·
verified ·
1 Parent(s): 04cd6c3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -139,7 +139,7 @@ In the third example,
139
  ```
140
  solutions
141
  ```
142
- #```python
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