fix mising type
remove extra bonfire in title
This commit is contained in:
@ -5,7 +5,6 @@
|
|||||||
{
|
{
|
||||||
"id": "aff0395860f5d3034dc0bfc9",
|
"id": "aff0395860f5d3034dc0bfc9",
|
||||||
"title": "Validate US Telephone Numbers",
|
"title": "Validate US Telephone Numbers",
|
||||||
"type": "bonfire",
|
|
||||||
"difficulty": "4.01",
|
"difficulty": "4.01",
|
||||||
"description": [
|
"description": [
|
||||||
"Return true if the passed string is a valid US phone number",
|
"Return true if the passed string is a valid US phone number",
|
||||||
@ -51,6 +50,7 @@
|
|||||||
"MDNlinks": [
|
"MDNlinks": [
|
||||||
"RegExp"
|
"RegExp"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
@ -72,7 +72,6 @@
|
|||||||
"The mathematical term symmetric difference refers to the elements in two sets that are in either the first or second set, but not in both.",
|
"The mathematical term symmetric difference refers to the elements in two sets that are in either the first or second set, but not in both.",
|
||||||
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
||||||
],
|
],
|
||||||
"type": "bonfire",
|
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"function sym(args) {",
|
"function sym(args) {",
|
||||||
" return arguments;",
|
" return arguments;",
|
||||||
@ -90,6 +89,7 @@
|
|||||||
"Array.reduce()",
|
"Array.reduce()",
|
||||||
"Symmetric Difference"
|
"Symmetric Difference"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
@ -113,7 +113,6 @@
|
|||||||
"Otherwise, return change in coin and bills, sorted in highest to lowest order.",
|
"Otherwise, return change in coin and bills, sorted in highest to lowest order.",
|
||||||
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
||||||
],
|
],
|
||||||
"type": "bonfire",
|
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"function drawer(price, cash, cid) {",
|
"function drawer(price, cash, cid) {",
|
||||||
" var change;",
|
" var change;",
|
||||||
@ -146,6 +145,7 @@
|
|||||||
"MDNlinks": [
|
"MDNlinks": [
|
||||||
"Global Object"
|
"Global Object"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
@ -166,7 +166,6 @@
|
|||||||
"Compare and update inventory stored in a 2d array against a second 2d array of a fresh delivery. Update current inventory item quantity, and if an item cannot be found, add the new item and quantity into the inventory array in alphabetical order.",
|
"Compare and update inventory stored in a 2d array against a second 2d array of a fresh delivery. Update current inventory item quantity, and if an item cannot be found, add the new item and quantity into the inventory array in alphabetical order.",
|
||||||
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
||||||
],
|
],
|
||||||
"type": "bonfire",
|
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"function inventory(arr1, arr2) {",
|
"function inventory(arr1, arr2) {",
|
||||||
" // All inventory must be accounted for or you're fired!",
|
" // All inventory must be accounted for or you're fired!",
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
"These methods must be the only available means for interacting with the object.",
|
"These methods must be the only available means for interacting with the object.",
|
||||||
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
||||||
],
|
],
|
||||||
"type": "bonfire",
|
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"var Person = function(firstAndLast) {",
|
"var Person = function(firstAndLast) {",
|
||||||
" return firstAndLast;",
|
" return firstAndLast;",
|
||||||
@ -42,6 +41,7 @@
|
|||||||
"Closures",
|
"Closures",
|
||||||
"Details of the Object Model"
|
"Details of the Object Model"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
@ -56,7 +56,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "af4afb223120f7348cdfc9fd",
|
"id": "af4afb223120f7348cdfc9fd",
|
||||||
"title": "Bonfire: Map the Debris",
|
"title": "Map the Debris",
|
||||||
"dashedName": "bonfire-map-the-debris",
|
"dashedName": "bonfire-map-the-debris",
|
||||||
"difficulty": "3.02",
|
"difficulty": "3.02",
|
||||||
"description": [
|
"description": [
|
||||||
@ -83,6 +83,7 @@
|
|||||||
"MDNlinks": [
|
"MDNlinks": [
|
||||||
"Math.pow()"
|
"Math.pow()"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
@ -105,7 +106,6 @@
|
|||||||
"pairwise([1, 3, 2, 4], 4) would only equal 1, because only the first two elements can be paired to equal 4, and the first element has an index of 0!",
|
"pairwise([1, 3, 2, 4], 4) would only equal 1, because only the first two elements can be paired to equal 4, and the first element has an index of 0!",
|
||||||
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>RSAP</a> if you get stuck. Try to pair program. Write your own code."
|
||||||
],
|
],
|
||||||
"type": "bonfire",
|
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"function pairwise(arr, arg) {",
|
"function pairwise(arr, arg) {",
|
||||||
" return arg;",
|
" return arg;",
|
||||||
@ -123,6 +123,7 @@
|
|||||||
"MDNlinks": [
|
"MDNlinks": [
|
||||||
"Array.reduce()"
|
"Array.reduce()"
|
||||||
],
|
],
|
||||||
|
"type": "bonfire",
|
||||||
"challengeType": 5,
|
"challengeType": 5,
|
||||||
"nameCn": "",
|
"nameCn": "",
|
||||||
"descriptionCn": [],
|
"descriptionCn": [],
|
||||||
|
Reference in New Issue
Block a user