Write a function which takes a number represented as a String as an argument, for example "12345" or "4321432143214321" and returns the digits of that number in an array.
Your function should create an int[] array with one digit of your number per element.
Can someone please a hint as how I can approach this problem?