Given a non-null
, non-empty String
, if it starts with "f" return "Fizz".
If it ends with "b" return "Buzz".
If both conditions are true, return "FizzBuzz".
In all other cases, return the String
unchanged.
Stuck? You may find these lessons helpful: