1231. Divide Chocolate
Description
**Input:** sweetness = [1,2,3,4,5,6,7,8,9], k = 5
**Output:** 6
**Explanation:** You can divide the chocolate to [1,2,3], [4,5], [6], [7], [8], [9]**Input:** sweetness = [5,6,7,8,9,1,2,3,4], k = 8
**Output:** 1
**Explanation:** There is only one way to cut the bar into 9 pieces.**Input:** sweetness = [1,2,2,1,2,2,1,2,2], k = 2
**Output:** 5
**Explanation:** You can divide the chocolate to [1,2,2], [1,2,2], [1,2,2]ac
Last updated