Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public int ArrayInvCount(int array[]) {
  2. for (int i = 0; i < array.length; i++) {
  3. if (invCount(array[i]) > 0) {
  4. return invCount(array[i]);
  5. }
  6. }
  7. return 0;
  8. }
Add Comment
Please, Sign In to add comment