From 7a2f971ea39babe9c1d83ac35e423d629a603789 Mon Sep 17 00:00:00 2001 From: Dale Seo Date: Fri, 31 May 2024 18:42:37 -0400 Subject: [PATCH] add folders for week 6 --- container-with-most-water/README.md | 2 ++ find-minimum-in-rotated-sorted-array/README.md | 2 ++ longest-repeating-character-replacement/README.md | 2 ++ longest-substring-without-repeating-characters/README.md | 2 ++ search-in-rotated-sorted-array/README.md | 2 ++ 5 files changed, 10 insertions(+) create mode 100644 container-with-most-water/README.md create mode 100644 find-minimum-in-rotated-sorted-array/README.md create mode 100644 longest-repeating-character-replacement/README.md create mode 100644 longest-substring-without-repeating-characters/README.md create mode 100644 search-in-rotated-sorted-array/README.md diff --git a/container-with-most-water/README.md b/container-with-most-water/README.md new file mode 100644 index 000000000..920cc8369 --- /dev/null +++ b/container-with-most-water/README.md @@ -0,0 +1,2 @@ +- 문제: https://leetcode.com/problems/container-with-most-water/ +- 풀이: https://www.algodale.com/problems/container-with-most-water/ diff --git a/find-minimum-in-rotated-sorted-array/README.md b/find-minimum-in-rotated-sorted-array/README.md new file mode 100644 index 000000000..acfb01d12 --- /dev/null +++ b/find-minimum-in-rotated-sorted-array/README.md @@ -0,0 +1,2 @@ +- 문제: https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/ +- 풀이: https://www.algodale.com/problems/find-minimum-in-rotated-sorted-array/ diff --git a/longest-repeating-character-replacement/README.md b/longest-repeating-character-replacement/README.md new file mode 100644 index 000000000..196a071e1 --- /dev/null +++ b/longest-repeating-character-replacement/README.md @@ -0,0 +1,2 @@ +- 문제: https://leetcode.com/problems/longest-repeating-character-replacement/ +- 풀이: https://www.algodale.com/problems/longest-repeating-character-replacement/ diff --git a/longest-substring-without-repeating-characters/README.md b/longest-substring-without-repeating-characters/README.md new file mode 100644 index 000000000..aa7c8ad09 --- /dev/null +++ b/longest-substring-without-repeating-characters/README.md @@ -0,0 +1,2 @@ +- 문제: https://leetcode.com/problems/longest-substring-without-repeating-characters/ +- 풀이: https://www.algodale.com/problems/longest-substring-without-repeating-characters/ diff --git a/search-in-rotated-sorted-array/README.md b/search-in-rotated-sorted-array/README.md new file mode 100644 index 000000000..82919b3e2 --- /dev/null +++ b/search-in-rotated-sorted-array/README.md @@ -0,0 +1,2 @@ +- 문제: https://leetcode.com/problems/search-in-rotated-sorted-array/ +- 풀이: https://www.algodale.com/problems/search-in-rotated-sorted-array/