Data update

This commit is contained in:
Ingy döt Net 2023-08-01 14:30:30 -07:00
parent 07c7092a52
commit 61b93a2cd1
313 changed files with 6160 additions and 346 deletions

View file

@ -3,9 +3,9 @@ Write a program that prints the integers from   '''1'''   to   ''
But:
:*   for multiples of three,   print   '''Fizz'''     (instead of the number)
:*   for multiples of five,   print   '''Buzz'''     (instead of the number)
:*   for multiples of both three and five,   print   '''FizzBuzz'''     (instead of the number)
:*   for multiples of three,   print   '''Fizz'''     instead of the number;
:*   for multiples of five,   print   '''Buzz'''     instead of the number;
:*   for multiples of both three and five,   print   '''FizzBuzz'''     instead of the number.
The   ''FizzBuzz''   problem was presented as the lowest level of comprehension required to illustrate adequacy.