summaryrefslogtreecommitdiff
path: root/2020/08/23/main.rb
blob: 94fdadc09c12bba4c03d479f68b56529448b81ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def assert_equal(x, y)
  raise [x, y].inspect unless x == y
end

class Solution
  def self.run(n)
    0
  end
end

assert_equal(5, Solution.run(4))
assert_equal(8, Solution.run(5))