Created
January 8, 2018 14:41
-
-
Save mattb20/ee7f418415581d7750f167f5ff41dfc9 to your computer and use it in GitHub Desktop.
checking array for matching elements
This file contains hidden or 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
count = 0 | |
for i in 0...arr1.length.to_i | |
if arr1[i] === arr2[i] | |
count +=1 | |
else | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment