From 7ca724dc879026188cb8e2c239e44e11c73f3b35 Mon Sep 17 00:00:00 2001 From: mavpks Date: Tue, 26 May 2020 17:23:58 +0530 Subject: [PATCH] add backtracking parentheses problem --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 79f89c5..6272f4f 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ Essentially, this is a curation of questions that I personally use to prepare fo * [Subsets](https://leetcode.com/problems/subsets/) (medium) * [Interleaving string](https://leetcode.com/problems/interleaving-string/) (hard) * [Remove invalid parentheses](https://leetcode.com/problems/remove-invalid-parentheses/) (hard) +* [Generate Parentheses](https://leetcode.com/problems/generate-parentheses/) (medium) ## Dynamic Programming * [Climbing stairs](https://leetcode.com/problems/climbing-stairs/) (easy) * [Decode ways](https://leetcode.com/problems/decode-ways/) (medium)