Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 244 Bytes

File metadata and controls

7 lines (5 loc) · 244 Bytes

Given a list of integers and strings, return a list of only the strings.

For example:

  • elementArranger([1,”a”,3]) -> [“a”]
  • elementArranger([“Hershey”,”c”,3,7,5]) -> [“Hershey”,"c"]
  • elementArranger(10,20,36]) -> []