diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-23 13:32:50 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-08-23 13:32:50 -0600 |
| commit | cd376a15bf46cc89377a34222edd9d774ff6d438 (patch) | |
| tree | bef0f681dbee56cd8b43c7a082c9b287b38e24a7 | |
| parent | 76e3be7627d5e019c98f4a1a4007c5bdd6dd65e3 (diff) | |
Start working on solution
| -rw-r--r-- | 2020/08/23/main.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2020/08/23/main.rb b/2020/08/23/main.rb new file mode 100644 index 0000000..94fdadc --- /dev/null +++ b/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)) |
