From 97e5bfe6d26d88cae8d1988c860e3bc0de749e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jobert=20S=C3=A1?= <1816444+jobearrr@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:57:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96a055f..8982318 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ You can find the walkthrough with detailed solutions to all the problems on my b | 2 | [Add Two Numbers][002-problem] | **`LL`** **`M`** **`R`** | ![Difficulty][difficulty-medium-shield] | [Walkthrough][002-walkthrough] | [Iterative][002-solution1] | `O(max(m,n))` | `O(1)` | | 2 | - | - | - | - | [Recursive1][002-solution2] | `O(max(m,n))` | `O(1)` | | 2 | - | - | - | - | [Recursive2][002-solution3] | `O(min(m,n))` | `O(1)` | -| 3 | [Longest Substring Without Repeating Characters][003-problem] | **`HT`** **`S`** **`SW`** | ![Difficulty][difficulty-medium-shield] | [Walkthrough][003-walkthrough] | [Brute Force][003-solution1] | `O(n³)` | `O(min(m,n))` | +| 3 | [Longest Substring Without Repeating Characters][003-problem] | **`HT`** **`S`** **`SW`** | ![Difficulty][difficulty-medium-shield] | [Walkthrough][003-walkthrough] | [Brute Force][003-solution1] | `O(n²)` | `O(min(m,n))` | | 3 | - | - | - | - | [Sliding Window][003-solution2] | `O(n)` | `O(min(m,n))` | | 3 | - | - | - | - | [Optimized Sliding Window][003-solution3] | `O(n)` | `O(1)` | | 4 | [Median of Two Sorted Arrays][004-problem] | **`A`** **`BS`** **`DC`** | ![Difficulty][difficulty-hard-shield] | | | | | @@ -152,7 +152,7 @@ Please acknowledge [the license](https://github.com/jobearrr/LeetSwift/blob/main [002-solution3]: https://github.com/jobearrr/LeetSwift/blob/main/Sources/Solutions/002%20-%20Add%20Two%20Numbers/AddTwoNumbersRecursiveSolution.swift [003-problem]: https://leetcode.com/problems/longest-substring-without-repeating-characters -[003-walkthrough]: https://jobear.dev/algo-hub +[003-walkthrough]: https://jobear.dev/algo-hub/leetcode/003-longest-substring-without-repeating-characters/ [003-solution1]: https://github.com/jobearrr/LeetSwift/blob/main/Sources/Solutions/003%20-%20Longest%20Substring%20Without%20Repeating%20Characters/LongestSubstringWithUniqueCharsBruteForceSolution.swift [003-solution2]: https://github.com/jobearrr/LeetSwift/blob/main/Sources/Solutions/003%20-%20Longest%20Substring%20Without%20Repeating%20Characters/LongestSubstringWithUniqueCharsSlidingWindowSolution.swift [003-solution3]: https://github.com/jobearrr/LeetSwift/blob/main/Sources/Solutions/003%20-%20Longest%20Substring%20Without%20Repeating%20Characters/LongestSubstringWithUniqueCharsOptimizedSlidingWindowSolution.swift