Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Day-26/q1: Palindrome Partitioning II #616

Open
prerna-rn opened this issue Jan 27, 2024 · 4 comments
Open

Day-26/q1: Palindrome Partitioning II #616

prerna-rn opened this issue Jan 27, 2024 · 4 comments

Comments

@prerna-rn
Copy link
Contributor

Given a string s, partition s such that every substring of the partition is a palindrome.

Return the minimum cuts needed for a palindrome partitioning of s.

Example 1:

Input: s = "aab"
Output: 1
Explanation: The palindrome partitioning ["aa","b"] could be produced using 1 cut.

Example 2:

Input: s = "a"
Output: 0

Example 3:

Input: s = "ab"
Output: 1

Constraints:

1 <= s.length <= 2000
s consists of lowercase English letters only.

https://leetcode.com/problems/palindrome-partitioning-ii/description/

@Kalpana8055
Copy link
Contributor

@bh-g please assign to me

@Tech-neophyte
Copy link
Contributor

@bh-g Please assign this ques to me...

@Anomasingh
Copy link
Contributor

Anomasingh commented Jan 27, 2024

Please assign this issue to me.. @bh-g

@avanimathur
Copy link
Contributor

Please assign it to me @bh-g

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants