FizzBuzz: Difference between revisions

12 bytes removed ,  9 months ago
imported>Grootson
imported>Grootson
Line 6,529:
'''straightforward'''
<syntaxhighlight lang="matlab">
x = string(1:100);
x(3:3:100$) = 'Fizz';
x(5:5:100$) = 'Buzz';
x(53*7:5:3*75:100$) = 'FizzBuzz'
</syntaxhighlight>
 
Anonymous user