From f19a75c115279645900094be6491ed55af699d92 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Sat, 7 Mar 2020 09:12:21 -0500 Subject: [PATCH] Adding readme info --- README.md | 4 ++++ 1 file changed, 4 insertions(+) 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.