From df2ba2e486bb661adf1b8024e71d430659bccff8 Mon Sep 17 00:00:00 2001 From: Nathan Leniz Date: Sat, 28 Feb 2015 17:14:04 +0900 Subject: [PATCH] Rename anagrams to mutations --- seed_data/bonfires.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index 9f2d79ec12..695877e722 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -195,16 +195,16 @@ }, { "_id": "af2170cad53daa0770fabdea", - "name": "Anagrams", + "name": "Mutations", "difficulty": "1.12", "description": [ "Return true if the string in the second element of the array if the string in the first element contains it in any form." ], - "challengeSeed": "function anagram(arr) {\n return arr;\n}\n\nanagram(['hello', 'hey']);", + "challengeSeed": "function mutation(arr) {\n return arr;\n}\n\nmutation(['hello', 'hey']);", "tests": [ - "expect(anagram(['hello', 'hey'])).to.be.false;", - "expect(anagram(['hello', 'Hello'])).to.be.true;", - "expect(anagram(['zyxwvutsrqponmlkjihgfedcba', 'qrstu'])).to.be.true;" + "expect(mutation(['hello', 'hey'])).to.be.false;", + "expect(mutation(['hello', 'Hello'])).to.be.true;", + "expect(mutation(['zyxwvutsrqponmlkjihgfedcba', 'qrstu'])).to.be.true;" ] }, {