Created
December 9, 2014 11:35
-
-
Save metallurgix/8f133292fdf7f484f4fb to your computer and use it in GitHub Desktop.
Codility-Lesson 1-Challenge 3
This file contains 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
def solution(a) | |
if a.length==0 | |
1 | |
else | |
sum=a.inject(:+) | |
((a.length+1)*(a.length+2)/2)-sum | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment