Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#3384 from richchurcher/fix/where-do-i…
Browse files Browse the repository at this point in the history
…-belong

Modify description for Where do I belong
  • Loading branch information
QuincyLarson committed Oct 24, 2015
2 parents e521cdb + e0df317 commit 333d4c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions seed/challenges/basic-bonfires.json
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,9 @@
"id": "a24c1a4622e3c05097f71d67",
"title": "Where do I belong",
"description": [
"Return the lowest index at which a value (second argument) should be inserted into a sorted array (first argument).",
"For example, where([1,2,3,4], 1.5) should return 1 because it is greater than 1 (0th index), but less than 2 (1st index).",
"Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted.",
"For example, where([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1).",
"Likewise, where([20,3,5], 19) should return 2 because it is less than 20 (index 2) and greater than 5 (index 1).",
"Remember to use <a href=\"//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck\" target=\"_blank\">Read-Search-Ask</a> if you get stuck. Write your own code."
],
"challengeSeed": [
Expand Down

0 comments on commit 333d4c0

Please sign in to comment.