Skip to content

Instantly share code, notes, and snippets.

View g-ilham's full-sized avatar

g-Ilham g-ilham

  • Russian, Republic of Tatarstan, Kazan
View GitHub Profile
class FlatArray
  attr_reader :nested_array, :flatten_array

  def initialize(nested_array = [])
    @nested_array = nested_array
    @flatten_array = []
  end

 def call