Commit cd376a1

mo khan <mo.khan@gmail.com>
2020-08-23 19:32:50
Start working on solution
1 parent 76e3be7
Changed files (1)
2020
08
2020/08/23/main.rb
@@ -0,0 +1,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))