LeetCode 38 Count and Say
https://leetcode.com/problems/count-and-say/
Firstly, I have to say the question is hard to understand.We can just use the hashmap to solve it, but I use two index while.
I try another methor by using recursion.
LeetCode 53 Maximum Subarray
https://leetcode.com/problems/maximum-subarray/
We hava lots of solutions: