package
0.0.0-20240717210230-cb72c3092e0b
Repository: https://github.com/ashinzekene/algorithms.git
Documentation: pkg.go.dev

# README

Palindrome Partitioning

Medium

Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s.

A palindrome string is a string that reads the same backward as forward.

Example 1:

Input: s = "aab"
Output: [["a","a","b"],["aa","b"]]

Example 2:

Input: s = "a"
Output: [["a"]]

Example 2:

Input: s = "abbab"
Output: [["a","b","b","a","b"],["a","b","bab"],["a","bb","a","b"],["abba","b"]]

Constraints:

  • 1 <= s.length <= 16
  • s contains only lowercase English letters.