Skip to content

Instantly share code, notes, and snippets.

@dLobatog
Created September 11, 2012 20:41
Embed
What would you like to do?
Sequential_search_trimmed_
def sequential_search(array, solution)
array[array.length] = solution
index = 0
while true
break if array[index] == solution
index += 1
end
if index == array.length
-1
else
index
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment