Possible Duplicate:
Split a number into its digits with Haskell
how can i convert integer to integer list Exmple: input: 1234 output:[1,2,3,4] any idee about this problem ?
how can i convert integer to integer list Exmple: input: 1234 output:[1,2,3,4] any idee about this problem ? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Source: link |
|||
|
|
This sounds like homework. Here's a general algorithm that you should be able to apply in Haskell:
Good luck. |
|||||
|
|
Using integer arithmetic:
|
|||||
|
|
What about this quite simple solution?
gives This one is possible and a bit more universal, too:
|
||||
|
|
|
Alternatative solution using unfoldr:
|
|||
|
|
|
jleedev: I did something similar with divMod. I did not know that quotRem existed!
|
|||
|
|