e.g.:
- If the number is 234, I would like the result to be
List<String>containing2,3,4(3 elements) - If the number is 8763, I would like the result to be
List<String>containing8,7,6,3(4 elements)
Does commons-math already have such a function?
|
e.g.:
Does commons-math already have such a function? |
|||||
|
Edit: You can't use the Vector constructor; have to do it manually.
There isn't an easier way to do this because it really isn't a very obvious or common thing to want to do. For one thing, why do you need a List of Strings? Can you just have a list of Characters? That would eliminate step 3. Secondly, does it have to be a List or can it just be an array? That would eliminate step 4. |
||||
|
|
|
You can use the built in java.util.Arrays.asList:
Step by step this:
|
|||||||
|
|
|||||||||||||
|
|
Try this:
It will create list of Strings:
|
|||
|
|
|
This seems like homework. Consider using |
|||
|
|