Created
March 6, 2019 16:03
-
-
Save cherscarlett/82a138acd483c17dac86c5ca03b3ab7f to your computer and use it in GitHub Desktop.
This file contains 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
// Consider all numbers on a number line from x to y. | |
// Compare each number in sequence to every other number: inclusive, once. | |
// For x = 10, and y = 15 | |
// 10, 11 | |
// 10, 12 | |
// 10, 13 | |
// 10, 15 | |
// ... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment