7. Palindrome Partitioning
7. Palindrome Partitioning
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 .
class Solution {
List<List<String>> res = new ArrayList<>();