As input from the user I am expecting pairs of numbers separated by commas:
// se for um par só
1-2
// se for mais de um par
1-2,3-4,5-6
I expect something like this:
[
[1, 2],
[3, 4],
[5, 6]
]
I'm in doubt about getting this ou...
asked by
18.06.2014 / 18:40