Medium
Given a string s, partition it so that every substring of the partition is a palindrome. Return all possible palindrome partitionings, in any order.
s
Input: s = "aab" Output: [["a","a","b"],["aa","b"]]
Input: s = "a" Output: [["a"]]