Palindrome partitioning

Algorithm analysis and design course team project
A palindrome string is a string that reads the same backward as forward.
palindrome partitioning is getting the palindrome substrings inside a string
Result : Minimum cuts


Approaches used:

-Divide and Conquer Link
-Dynamic Programming Link