-
Write a function that sorts an array of numbers where odds appear first.
-
Write a function that reverses every word in a string, e.g. Input: "My name is Max" Output: "Max is name My"
-
Part A: Write a function to reverse a string, e.g. Input: "Hello world!" Output: "!dlrow olleH"
PART B: Write the same function recursively
- Find the first non-repeated character in a string (appears once only).