From 6121e9aae299f3e24f0d27c362869d8d951fc6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= <38439709+Imolai@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:34:59 +0200 Subject: [PATCH] Fix first solution link in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4f4d04..4eae12e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ import premium | # | Problem | Solution | | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | [python3](https://github.com/cnkyrpsgl/leetcode/blob/master/solutions/1.py) | +| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | [python3](https://github.com/cnkyrpsgl/leetcode/blob/master/solutions/python3/1.py) | | 2 | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers) | [python3](https://github.com/cnkyrpsgl/leetcode/blob/master/solutions/python3/2.py) | | 3 | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters) | [python3](https://github.com/cnkyrpsgl/leetcode/blob/master/solutions/python3/3.py) | | 4 | [Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays) | [python3](https://github.com/cnkyrpsgl/leetcode/blob/master/solutions/python3/4.py) |