JuniorArray

Count Equal and Divisible Pairs in an Array

Given a 0-indexed integer array nums of length n and an integer k, return the number of pairs (i, j) where 0 <= i < j < n, such that nums[i] == nums[j] and (i * j) is divisible by k.

Example 1
Inputnums = [3,1,2,2,2,1,3], k = 2
Output4
There are 4 pairs that meet all the requirements: (0, 6), (2, 3), (2, 4), and (3, 4).
Example 2
Inputnums = [1,2,3,4], k = 1
Output0
Since no value in nums is repeated, there are no pairs (i, j) that meet all the requirements.

Constraints

  • 1 <= nums.length <= 100
  • 1 <= nums[i], k <= 100

Asked at 5 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate