Count all inversions in an array. For example if you have an array with the following value:
[1,3,5,2,4,6]
You have three inversion [3,2], [5,2] and [5,4]
Add this line to your application's Gemfile:
gem 'inversions_in_array'
And then execute:
$ bundle
Or install it yourself as:
$ gem install inversions_in_array
TODO: Write usage instructions here
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request