Created
June 16, 2012 04:59
-
-
Save jessieay/2939980 to your computer and use it in GitHub Desktop.
RPN w one test passting
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
class RPNCalculator | |
attr_accessor :calculator, :result | |
def initialize | |
@calculator = [] | |
@result = 0 | |
end | |
def push(arg) | |
@calculator << arg | |
end | |
def plus | |
@calculator.each do |i| | |
@result += i | |
end | |
end | |
def value | |
@result | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment