Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

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.