Skip to content

Commit e04e0f9

Browse files
committed
READMEs updated with links to leetcode
1 parent 1c90739 commit e04e0f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

leetcode/0036.valid_sudoku/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 36. Valid Sudoku
1+
# [36. Valid Sudoku](https://leetcode.com/problems/valid-sudoku/description/)
22
Determine if a `9 x 9` Sudoku board is valid. Only the filled cells need to be validated according the following rules:
33
- Each row must contain the digits `1-9` without repetition.
44
- Each column must contain the digits `1-9` without repetition.

leetcode/0238.product_of_array_except_self/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 238. Product of Array Except Self
1+
# [238. Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/description/)
22
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]`.
33

44
The product of any prefix or suffix of `nums` is guaranteed to fit in a 32-bit integer.

0 commit comments

Comments
 (0)