FizzBuzz Lite

Try to solve the FizzBuzz Lite problem.

We'll cover the following...

Statement

Given an integer n, your task is to return a list of strings representing the numbers from 11 to n. The output list should follow these rules:

  • If a number is divisible by both ...