Class: Kata::Algorithms::SumOfThree
- Inherits:
-
Struct
- Object
- Struct
- Kata::Algorithms::SumOfThree
- Defined in:
- lib/kata/algorithms/sum_of_three/sum_of_three.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#array_of_integers ⇒ Object
Returns the value of attribute array_of_integers.
Instance Method Summary collapse
Instance Attribute Details
#array_of_integers ⇒ Object
Returns the value of attribute array_of_integers
3 4 5 |
# File 'lib/kata/algorithms/sum_of_three/sum_of_three.rb', line 3 def array_of_integers @array_of_integers end |
Instance Method Details
#find_three ⇒ Object
4 5 6 |
# File 'lib/kata/algorithms/sum_of_three/sum_of_three.rb', line 4 def find_three raise NotImplementedError.new("You have to implement this") end |