vectors
Write an R function solution(x) that returns the vector x in reverse order.
Example
solution(c(1, 2, 3)) → c(3, 2, 1)
solution.py
14px
📊 Test Results
Run your code to see test results here.