fengyuanyang / JavaTDD

A repo to encourage beginner or improve your coding skill with Java Test Driven Development.You are welcome to contribute or file issues
10 stars 40 forks source link

[TDD] Kata - FizzBuzz #68

Open fengyuanyang opened 4 years ago

fengyuanyang commented 4 years ago

Description Kata-FizzBuzz

Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz “.

Given 1 parameters (int)
When input is 20
Expect output
 1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
16
17
Fizz
19
Buzz

... etc up to 100

Additional context

Add any other context, links references or screenshots about the feature request here.

Important Checklist

vicbl commented 4 years ago

Can you assign this to me please ?

fengyuanyang commented 4 years ago

sure @vicbl

deepharshsri commented 4 years ago

hey can you assign me to this?

deepharshsri commented 4 years ago

Hey, in which branch I have to send the PR?

fengyuanyang commented 4 years ago

@deepharshsri The pr request I received earlier wants to merge 1 commit into fengyuanyang:main from deepharshsri:main

Any branch from you side, just create a pr from your banch to fengyuanyang:main

You may have a look on this video for first pr for beginner(on open source)

https://hacktoberfest.digitalocean.com/details

audy910 commented 4 years ago

Hi, can I be assigned please?

fengyuanyang commented 3 years ago

Hi @audy910 sorry i didn't see you leave comments here, do you still wanna work on this issue?

Prathamesh-Thakur commented 2 years ago

Hi, can I be assigned to this?