NihalAhmedBismillah / FizzBuzz

Design an API which Return data as Fizz Buzz Pattern: A program that prints each number from 1 to 100 on a new line. For each multiple of 3, print "Fizz" instead of the number. For each multiple of 5, print "Buzz" instead of the number. For numbers which are multiples of both 3 and 5, print "FizzBuzz" instead of the number. More on Fizz Buzz: https://en.wikipedia.org/wiki/Fizz_buzz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FizzBuzz

Design an API which Return data as Fizz Buzz Pattern: A program that prints each number from 1 to 100 on a new line. For each multiple of 3, print "Fizz" instead of the number. For each multiple of 5, print "Buzz" instead of the number. For numbers which are multiples of both 3 and 5, print "FizzBuzz" instead of the number. More on Fizz Buzz: https://en.wikipedia.org/wiki/Fizz_buzz

Setup

$ git clone https://github.com/NihalAhmedBismillah/FizzBuzz.git
$ cd FizzBuzz
$ npm install

NPM scripts

  • $ npm run start to start local development server.
  • $ npm run test to start test.

Swagger Api

About

Design an API which Return data as Fizz Buzz Pattern: A program that prints each number from 1 to 100 on a new line. For each multiple of 3, print "Fizz" instead of the number. For each multiple of 5, print "Buzz" instead of the number. For numbers which are multiples of both 3 and 5, print "FizzBuzz" instead of the number. More on Fizz Buzz: https://en.wikipedia.org/wiki/Fizz_buzz


Languages

Language:TypeScript 100.0%