PracHub
QuestionsCoachesLearningGuidesInterview Prep

Quick Overview

This question evaluates understanding of inversion counting in permutations, testing algorithmic problem-solving, complexity analysis, and data-structure reasoning about pairwise order relations.

  • medium
  • Hudson
  • Coding & Algorithms
  • Data Scientist

Count inversions in a permutation

Company: Hudson

Role: Data Scientist

Category: Coding & Algorithms

Difficulty: medium

Interview Round: Technical Screen

## Problem Given an array `a` of length `n` that is a permutation of distinct integers (e.g., `1..n`), define an **inversion** as a pair of indices `(i, j)` such that: - `0 ≤ i < j < n`, and - `a[i] > a[j]`. ### Task Write a function that returns the number of inversions in the array. ### Input/Output - **Input:** an integer array `a` with all distinct values - **Output:** a single integer = the number of inversions ### Notes - Any time complexity is acceptable (e.g., an `O(n^2)` approach is fine), but you may also discuss faster approaches if you know them.

Quick Answer: This question evaluates understanding of inversion counting in permutations, testing algorithmic problem-solving, complexity analysis, and data-structure reasoning about pairwise order relations.

Given a list of distinct integers, return the number of pairs i < j with a[i] > a[j].

Constraints

  • All values are distinct.
  • 0 <= len(a) <= 200000

Examples

Input: ([1, 2, 3, 4],)

Expected Output: 0

Explanation: Already sorted has no inversions.

Input: ([4, 3, 2, 1],)

Expected Output: 6

Explanation: Reverse sorted has every pair inverted.

Input: ([2, 4, 1, 3, 5],)

Expected Output: 3

Explanation: Mixed ordering.

Input: ([],)

Expected Output: 0

Explanation: Empty input.

Input: ([3],)

Expected Output: 0

Explanation: Single element.

Hints

  1. A merge-sort count adds the number of remaining left elements when taking from the right.
Last updated: Jun 27, 2026

Loading coding console...

PracHub

Master your tech interviews with 8,000+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities
  • Student Access

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • AI Coding Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.

Related Coding Questions

  • Solve Watcher Simulation And Integer Conversion - Hudson (medium)
  • Count People Reaching the Boundary - Hudson (easy)
  • Implement Buffer Parsers and Generic Map Class - Hudson (medium)
  • Implement Order Modification Feature - Hudson (hard)
  • Count players reaching end with moving watchers - Hudson (easy)