DEV Community

Discussion on: Daily Challenge #286 - Reverse It Quickly!

Collapse
 
rafaacioly profile image
Rafael Acioly

Python 🐍


from typing import List, Any

def reverse_(values: List[Any]) -> List[Any]:
  return values[::-1]