Last active
January 22, 2018 14:13
-
-
Save maryrosecook/52442a5f90fee756ce9ae75a2b483e79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use test-driven development to write a method that: | |
# * Takes an array of numbers. | |
# * Returns an array of the same numbers, except each number has had 1 added to it. | |
# * e.g. | |
# * Input: [1, 2, 3, 4, 5] | |
# * Return: [2, 3, 4, 5, 6] | |
# * Make sure to create a separate project directory for your code. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment