Inject-Challenge
Rewriting the Inject Method (Makers Academy week 2)
Inject Challenge (Rubyist Badge) Instructions
Challenge time: Friday, the entire day + the weekend if you need it Feel free to use google, your notes, books, etc but work on your own Task
Reopen the Array class or subclass it. Rewrite the inject method. Write a test for it first. Don't worry about returning an enumerator, assume a block is always given Name your method differently (that is, not inject() or subclass Array) because rspec uses inject() internally, so the tests will fail with weird messages unless your implementation of inject is perfect. If you would like a challenge, rewrite inject using two approaches: using iterators and using recursion but it’s not required to pass.