File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
0238.product_of_array_except_self Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
- # 36. Valid Sudoku
1
+ # [ 36. Valid Sudoku] ( https://leetcode.com/problems/valid-sudoku/description/ )
2
2
Determine if a ` 9 x 9 ` Sudoku board is valid. Only the filled cells need to be validated according the following rules:
3
3
- Each row must contain the digits ` 1-9 ` without repetition.
4
4
- Each column must contain the digits ` 1-9 ` without repetition.
Original file line number Diff line number Diff line change 1
- # 238. Product of Array Except Self
1
+ # [ 238. Product of Array Except Self] ( https://leetcode.com/problems/product-of-array-except-self/description/ )
2
2
Given an integer array ` nums ` , return an array ` answer ` such that ` answer[i] ` is equal to the product of all the elements of ` nums ` except ` nums[i] ` .
3
3
4
4
The product of any prefix or suffix of ` nums ` is guaranteed to fit in a 32-bit integer.
You can’t perform that action at this time.
0 commit comments