java-exercism-exercises/raindrops/.exercism/config.json

42 lines
1.0 KiB
JSON

{
"authors": [],
"contributors": [
"FridaTveit",
"jmrunkle",
"jtigger",
"Kyle-Pu",
"kytrinyx",
"lemoncurry",
"matthewmorgan",
"msomji",
"muzimuzhi",
"sjwarner-bp",
"SleeplessByte",
"Smarticles101",
"sshine",
"stkent",
"TimoleonLatinopoulos",
"tshradheya",
"vasouv",
"vdemeester",
"Zaldrick"
],
"files": {
"solution": [
"src/main/java/RaindropConverter.java"
],
"test": [
"src/test/java/RaindropConverterTest.java"
],
"example": [
".meta/src/reference/java/RaindropConverter.java"
],
"invalidator": [
"build.gradle"
]
},
"blurb": "Convert a number to a string, the content of which depends on the number's factors.",
"source": "A variation on FizzBuzz, a famous technical interview question that is intended to weed out potential candidates. That question is itself derived from Fizz Buzz, a popular children's game for teaching division.",
"source_url": "https://en.wikipedia.org/wiki/Fizz_buzz"
}