Skip to content

Instantly share code, notes, and snippets.

@shannonjen
Last active January 10, 2018 13:09
Show Gist options
  • Save shannonjen/3fbf5d54a0a93f6d14ed684168499e92 to your computer and use it in GitHub Desktop.
Save shannonjen/3fbf5d54a0a93f6d14ed684168499e92 to your computer and use it in GitHub Desktop.
g65 Warm Up Jan 10

g65 Warm Up Jan 10

Write a function that takes two numbers. For each number, you'll increase each digit by 1. Then you'll add the two numbers together.

For example:

 oddAdd(13, 50) >> 24 + 61 >> 85
 oddAdd(49, 16) >> 50 + 27 >> 77
 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment