data = [1,2,4,5,6,7,8,9,10]
odd, even = data.partition(&:odd?)
=>[[1, 5, 7, 9], [2, 4, 6, 8, 10]]
*This is a sample only.
data = [1,2,4,5,6,7,8,9,10]
odd, even = data.partition(&:odd?)
=>[[1, 5, 7, 9], [2, 4, 6, 8, 10]]
*This is a sample only.
For further actions, you may consider blocking this person and/or reporting abuse
aelassas -
Juddiy -
Idris Gadi -
Michael Andreuzza -
Top comments (0)