From f5178bc3aa59b1e7f2d4de4d2758a431e57599c4 Mon Sep 17 00:00:00 2001 From: caramelmelmel <72269553+caramelmelmel@users.noreply.github.com> Date: Fri, 6 Oct 2023 23:45:28 +0800 Subject: [PATCH 1/2] add DP problem though DP here is not the most optimised solution, added the problem here for good DP practice --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 403b6d9..afc01cd 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ Sign up with [Triplebyte](https://triplebyte.com/iv/axLndCI/cp) for free to inte * [Jump game II](https://leetcode.com/problems/jump-game-ii) (hard) * [Edit distance](https://leetcode.com/problems/edit-distance/) (hard) * [Wildcard matching](https://leetcode.com/problems/wildcard-matching/) (hard) +* [Integer Break](https://leetcode.com/problems/integer-break/) ## Design & Implementation * [Implement queue using stacks](https://leetcode.com/problems/implement-queue-using-stacks/) (easy) * [Min stack](https://leetcode.com/problems/min-stack/) (easy) From e0fe6470606c117c77be41422601da47af5b00b1 Mon Sep 17 00:00:00 2001 From: caramelmelmel <72269553+caramelmelmel@users.noreply.github.com> Date: Fri, 6 Oct 2023 23:46:24 +0800 Subject: [PATCH 2/2] update: difficulty level of proposed problem --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index afc01cd..a13871f 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Sign up with [Triplebyte](https://triplebyte.com/iv/axLndCI/cp) for free to inte * [Jump game II](https://leetcode.com/problems/jump-game-ii) (hard) * [Edit distance](https://leetcode.com/problems/edit-distance/) (hard) * [Wildcard matching](https://leetcode.com/problems/wildcard-matching/) (hard) -* [Integer Break](https://leetcode.com/problems/integer-break/) +* [Integer Break](https://leetcode.com/problems/integer-break/) (medium) ## Design & Implementation * [Implement queue using stacks](https://leetcode.com/problems/implement-queue-using-stacks/) (easy) * [Min stack](https://leetcode.com/problems/min-stack/) (easy)