Update README.md
Browse files
README.md
CHANGED
@@ -9,6 +9,7 @@ library_name: transformers
|
|
9 |
pipeline_tag: text-generation
|
10 |
widget:
|
11 |
- text: "
|
|
|
12 |
# You are given a 0-indexed m x n integer matrix grid. The width of a column is the maximum length of its integers.
|
13 |
|
14 |
# For example, if grid = [[-10], [3], [12]], the width of the only column is 3 since -10 is of length 3.
|
@@ -19,7 +20,7 @@ widget:
|
|
19 |
|
20 |
class Solution:
|
21 |
def findColumnWidth(self, grid: List[List[int]]) -> List[int]:
|
22 |
-
|
23 |
"
|
24 |
example_title: "New Medium Problem on Leetcode"
|
25 |
---
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
widget:
|
11 |
- text: "
|
12 |
+
```python
|
13 |
# You are given a 0-indexed m x n integer matrix grid. The width of a column is the maximum length of its integers.
|
14 |
|
15 |
# For example, if grid = [[-10], [3], [12]], the width of the only column is 3 since -10 is of length 3.
|
|
|
20 |
|
21 |
class Solution:
|
22 |
def findColumnWidth(self, grid: List[List[int]]) -> List[int]:
|
23 |
+
```
|
24 |
"
|
25 |
example_title: "New Medium Problem on Leetcode"
|
26 |
---
|