0842. Split Array into Fibonacci Sequence
Description
**Input:** num = "123456579"
**Output:** [123,456,579]**Input:** num = "11235813"
**Output:** [1,1,2,3,5,8,13]**Input:** num = "112358130"
**Output:** []
**Explanation:** The task is impossible.ac
Last updated