From 60c0238a790ab4f667be68cb0ac0438c6de8af70 Mon Sep 17 00:00:00 2001 From: soobing Date: Wed, 8 Apr 2026 21:31:32 +0900 Subject: [PATCH 1/2] feat(soobing): week6 > add 3rd tried comment to all solutions Co-Authored-By: Claude Sonnet 4.6 --- container-with-most-water/soobing.ts | 1 + design-add-and-search-words-data-structure/soobing.ts | 1 + longest-increasing-subsequence/soobing.ts | 1 + spiral-matrix/soobing.ts | 1 + valid-parentheses/soobing.ts | 1 + 5 files changed, 5 insertions(+) diff --git a/container-with-most-water/soobing.ts b/container-with-most-water/soobing.ts index 085eaa7043..411c4f7cc7 100644 --- a/container-with-most-water/soobing.ts +++ b/container-with-most-water/soobing.ts @@ -1,3 +1,4 @@ +// 3rd tried /** * * 문제 설명 diff --git a/design-add-and-search-words-data-structure/soobing.ts b/design-add-and-search-words-data-structure/soobing.ts index 002bbc57d0..942bdc604c 100644 --- a/design-add-and-search-words-data-structure/soobing.ts +++ b/design-add-and-search-words-data-structure/soobing.ts @@ -1,3 +1,4 @@ +// 3rd tried /** * * 문제 설명 diff --git a/longest-increasing-subsequence/soobing.ts b/longest-increasing-subsequence/soobing.ts index a7ead1d644..1a6a15bb3e 100644 --- a/longest-increasing-subsequence/soobing.ts +++ b/longest-increasing-subsequence/soobing.ts @@ -1,3 +1,4 @@ +// 3rd tried /** * * 문제 설명 diff --git a/spiral-matrix/soobing.ts b/spiral-matrix/soobing.ts index f439f730b9..88d7cc3b89 100644 --- a/spiral-matrix/soobing.ts +++ b/spiral-matrix/soobing.ts @@ -1,3 +1,4 @@ +// 3rd tried /** * * 문제 설명 diff --git a/valid-parentheses/soobing.ts b/valid-parentheses/soobing.ts index a71c8e57a5..62050f97fe 100644 --- a/valid-parentheses/soobing.ts +++ b/valid-parentheses/soobing.ts @@ -1,3 +1,4 @@ +// 3rd tried function isValid(s: string): boolean { const result: string[] = []; const open = ["(", "[", "{"]; From f77e34061321af73de6dce97dea6094f7d38a979 Mon Sep 17 00:00:00 2001 From: soobing Date: Wed, 8 Apr 2026 21:54:53 +0900 Subject: [PATCH 2/2] test: push --- spiral-matrix/soobing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiral-matrix/soobing.ts b/spiral-matrix/soobing.ts index 88d7cc3b89..8b94b26f44 100644 --- a/spiral-matrix/soobing.ts +++ b/spiral-matrix/soobing.ts @@ -1,4 +1,4 @@ -// 3rd tried +// 3rd tried (test) /** * * 문제 설명