Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 563 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 563 Bytes
difficulty OAs projects
newbie
arrays
cipher
card validation

Reverse 3

https://the-winter.github.io/codingjs/exercise.html?name=reverse3&title=Array-1

Dado un array de números enteros de longitud 3, devuelve un nuevo array con los elementos en orden inverso, por lo que [1, 2, 3] se convierte en [3, 2, 1].

Ejemplos:

  reverse3([1, 2, 3])  [3, 2, 1]
  reverse3([5, 11, 9])  [9, 11, 5]
  reverse3([7, 0, 0])  [0, 0, 7]