diff --git a/README.md b/README.md index 15a62b7..d66f79a 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ # NumberFinder + +A common challenge to new programmers is to write a program that finds a missing number in a range of numbers in a quick and efficient manner. Modern programming languages offer numerous ways to approach this problem, and it is a good way to see how a programmer approaches a given task. + +In this example, I use one of the more simple ways to find the missing number, at the cost of efficiency.