String Practice

  1. Write a function called noArticles(s) that takes a string parameter s. It will return a list of all the words in s that are not one of the following: a, an, the
  2. Write a function called nicknames(names) that takes a list of strings as a parameter. It will return a new list containing the first three characters of every name from the original list.