You are viewing a single comment's thread. Return to all comments →
Fixnum = Integer Bignum = Integer def sum_terms(n) 1.upto(n).inject(0) {|sum, n| sum + n**2 + 1} end
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Ruby - Enumerable - reduce
You are viewing a single comment's thread. Return to all comments →