标签: haskell
如何实现将数字分成数字列表的函数?
例如:
breakNumber 0 == [0] breakNumber 1234 == [1,2,3,4] breakNumber 1000 == [1,0,0,0]
是否可以在不使用递归的情况下实现?