4 lines
102 B
Mathematica
4 lines
102 B
Mathematica
x = string(1:100);
|
|
x(3:3:$) = 'Fizz';
|
|
x(5:5:$) = 'Buzz';
|
|
x(3*5:3*5:$) = 'FizzBuzz'
|