![[old] Count Inversion](https://dk1vwk12q8pjl.cloudfront.net/media/logos/task/middle/count-inversion-disabled.png)
[old] Count Inversion
In computer science and discrete mathematics, an inversion is a pair of places in a sequence where the elements in these places are out of their natural order. So, if we use ascending order for a group of numbers, then an inversion is when larger numbers appear before lower number in a sequence.
Check out this example sequence: (1, 2, 5, 3, 4, 7, 6) and we can see here three inversions
- 5 and 3;
- 5 and 4;
- 7 and 6.
You are given a sequence of unique numbers and you should count the number of inversions in this sequence. ...
You should be an authorized user in order to see the full description and start solving this mission.