From 0d5abe0a77a02a47df710300a4a47a586fd085a3 Mon Sep 17 00:00:00 2001 From: mr-shivamgarg <97354675+mr-shivamgarg@users.noreply.github.com> Date: Thu, 10 Nov 2022 01:04:14 +0530 Subject: [PATCH] fix: add solution link to LeetCode problem 62 (#1128) --- leetcode/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leetcode/README.md b/leetcode/README.md index 3fcec08e..1b4f86dd 100644 --- a/leetcode/README.md +++ b/leetcode/README.md @@ -25,7 +25,7 @@ | 35 | [Search Insert Position](https://leetcode.com/problems/search-insert-position/) | [C](./src/35.c) | Easy | | 38 | [Count and Say](https://leetcode.com/problems/count-and-say/) | [C](./src/38.c) | Easy | | 53 | [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/) | [C](./src/53.c) | Easy | -| 62 | [Unique Paths](https://leetcode.com/problems/unique-paths/description/) | Medium | +| 62 | [Unique Paths](https://leetcode.com/problems/unique-paths/description/) | [C](./src/62.c) | Medium | | 63 | [Unique Paths II](https://leetcode.com/problems/unique-paths-ii/) | [C](./src/63.c) | Medium | | 66 | [Plus One](https://leetcode.com/problems/plus-one/) | [C](./src/66.c) | Easy | | 82 | [Remove Duplicates from Sorted List II](https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/) | [C](./src/82.c) | Medium |