diff --git a/seed/challenges/advanced-bonfires.json b/seed/challenges/advanced-bonfires.json index 6d67184b715..97482403fac 100644 --- a/seed/challenges/advanced-bonfires.json +++ b/seed/challenges/advanced-bonfires.json @@ -5,7 +5,6 @@ { "id": "aff0395860f5d3034dc0bfc9", "title": "Validate US Telephone Numbers", - "type": "bonfire", "difficulty": "4.01", "description": [ "Return true if the passed string is a valid US phone number", @@ -51,6 +50,7 @@ "MDNlinks": [ "RegExp" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "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.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], - "type": "bonfire", "challengeSeed": [ "function sym(args) {", " return arguments;", @@ -90,6 +89,7 @@ "Array.reduce()", "Symmetric Difference" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "descriptionCn": [], @@ -113,7 +113,6 @@ "Otherwise, return change in coin and bills, sorted in highest to lowest order.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], - "type": "bonfire", "challengeSeed": [ "function drawer(price, cash, cid) {", " var change;", @@ -146,6 +145,7 @@ "MDNlinks": [ "Global Object" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "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.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], - "type": "bonfire", "challengeSeed": [ "function inventory(arr1, arr2) {", " // All inventory must be accounted for or you're fired!", diff --git a/seed/challenges/upper-intermediate-bonfires.json b/seed/challenges/upper-intermediate-bonfires.json index f99c278516e..104b0312e24 100644 --- a/seed/challenges/upper-intermediate-bonfires.json +++ b/seed/challenges/upper-intermediate-bonfires.json @@ -13,7 +13,6 @@ "These methods must be the only available means for interacting with the object.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], - "type": "bonfire", "challengeSeed": [ "var Person = function(firstAndLast) {", " return firstAndLast;", @@ -42,6 +41,7 @@ "Closures", "Details of the Object Model" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "descriptionCn": [], @@ -56,7 +56,7 @@ }, { "id": "af4afb223120f7348cdfc9fd", - "title": "Bonfire: Map the Debris", + "title": "Map the Debris", "dashedName": "bonfire-map-the-debris", "difficulty": "3.02", "description": [ @@ -83,6 +83,7 @@ "MDNlinks": [ "Math.pow()" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "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!", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], - "type": "bonfire", "challengeSeed": [ "function pairwise(arr, arg) {", " return arg;", @@ -123,6 +123,7 @@ "MDNlinks": [ "Array.reduce()" ], + "type": "bonfire", "challengeType": 5, "nameCn": "", "descriptionCn": [],