Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Move from brute-force thinking to an efficient approach using array strategy.
Given an array nums of distinct positive integers, return the number of tuples (a, b, c, d) such that a * b = c * d where a, b, c, and d are elements of nums, and a != b != c != d.
Example 1:
Input: nums = [2,3,4,6] Output: 8 Explanation: There are 8 valid tuples: (2,6,3,4) , (2,6,4,3) , (6,2,3,4) , (6,2,4,3) (3,4,2,6) , (4,3,2,6) , (3,4,6,2) , (4,3,6,2)
Example 2:
Input: nums = [1,2,4,5,10] Output: 16 Explanation: There are 16 valid tuples: (1,10,2,5) , (1,10,5,2) , (10,1,2,5) , (10,1,5,2) (2,5,1,10) , (2,5,10,1) , (5,2,1,10) , (5,2,10,1) (2,10,4,5) , (2,10,5,4) , (10,2,4,5) , (10,2,5,4) (4,5,2,10) , (4,5,10,2) , (5,4,2,10) , (5,4,10,2)
Constraints:
1 <= nums.length <= 10001 <= nums[i] <= 104nums are distinct.Problem summary: Given an array nums of distinct positive integers, return the number of tuples (a, b, c, d) such that a * b = c * d where a, b, c, and d are elements of nums, and a != b != c != d.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Hash Map
[2,3,4,6]
[1,2,4,5,10]
Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1726: Tuple with Same Product
class Solution {
public int tupleSameProduct(int[] nums) {
Map<Integer, Integer> cnt = new HashMap<>();
for (int i = 1; i < nums.length; ++i) {
for (int j = 0; j < i; ++j) {
int x = nums[i] * nums[j];
cnt.merge(x, 1, Integer::sum);
}
}
int ans = 0;
for (int v : cnt.values()) {
ans += v * (v - 1) / 2;
}
return ans << 3;
}
}
// Accepted solution for LeetCode #1726: Tuple with Same Product
func tupleSameProduct(nums []int) int {
cnt := map[int]int{}
for i := 1; i < len(nums); i++ {
for j := 0; j < i; j++ {
x := nums[i] * nums[j]
cnt[x]++
}
}
ans := 0
for _, v := range cnt {
ans += v * (v - 1) / 2
}
return ans << 3
}
# Accepted solution for LeetCode #1726: Tuple with Same Product
class Solution:
def tupleSameProduct(self, nums: List[int]) -> int:
cnt = defaultdict(int)
for i in range(1, len(nums)):
for j in range(i):
x = nums[i] * nums[j]
cnt[x] += 1
return sum(v * (v - 1) // 2 for v in cnt.values()) << 3
// Accepted solution for LeetCode #1726: Tuple with Same Product
use std::collections::HashMap;
impl Solution {
pub fn tuple_same_product(nums: Vec<i32>) -> i32 {
let mut cnt: HashMap<i32, i32> = HashMap::new();
let mut ans = 0;
for i in 1..nums.len() {
for j in 0..i {
let x = nums[i] * nums[j];
*cnt.entry(x).or_insert(0) += 1;
}
}
for v in cnt.values() {
ans += (v * (v - 1)) / 2;
}
ans << 3
}
}
// Accepted solution for LeetCode #1726: Tuple with Same Product
function tupleSameProduct(nums: number[]): number {
const cnt: Map<number, number> = new Map();
for (let i = 1; i < nums.length; ++i) {
for (let j = 0; j < i; ++j) {
const x = nums[i] * nums[j];
cnt.set(x, (cnt.get(x) ?? 0) + 1);
}
}
let ans = 0;
for (const [_, v] of cnt) {
ans += (v * (v - 1)) / 2;
}
return ans << 3;
}
Use this to step through a reusable interview workflow for this problem.
Two nested loops check every pair or subarray. The outer loop fixes a starting point, the inner loop extends or searches. For n elements this gives up to n²/2 operations. No extra space, but the quadratic time is prohibitive for large inputs.
Most array problems have an O(n²) brute force (nested loops) and an O(n) optimal (single pass with clever state tracking). The key is identifying what information to maintain as you scan: a running max, a prefix sum, a hash map of seen values, or two pointers.
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.