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
# Part 1 | |
def sum arr | |
return arr.sum() # 합 | |
end | |
def max_2_sum arr | |
# arr.max(2).sum() | |
return arr.sort.reverse[0,2].sum() # 내림차순 sort하고 2개 합 | |
end |