Text Generation
Transformers
English
codegen
Inference Endpoints
mhhmm commited on
Commit
56ec5ba
1 Parent(s): ea2fb2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md CHANGED
@@ -7,6 +7,21 @@ language:
7
  - en
8
  library_name: transformers
9
  pipeline_tag: text-generation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
  LLM: [Salesforce/CodeGen-6B-Mono](https://huggingface.co/Salesforce/codegen-6B-mono)
 
7
  - en
8
  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.
15
+
16
+ # Return an integer array ans of size n where ans[i] is the width of the ith column.
17
+
18
+ # The length of an integer x with len digits is equal to len if x is non-negative, and len + 1 otherwise.
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
  ---
26
 
27
  LLM: [Salesforce/CodeGen-6B-Mono](https://huggingface.co/Salesforce/codegen-6B-mono)