Unique Fractions - Amazon Top Interview Questions


Problem Statement :


You are given a list of lists fractions where each list contains [numerator, denominator] which represents the number numerator / denominator.

Return a new list of lists such that the numbers in fractions are:

In their most reduced terms. E.g. 8 / 6 becomes 4 / 3.
Any duplicate fractions that represent the same value are removed.
Sorted in ascending order by their value.
If the number is negative, the - sign should go to the numerator (the input also follows this).

Constraints

n ≤ 100,000 where n is the length of fractions

Example 1

Input

fractions = [
    [8, 4],
    [2, 1],
    [7, 3],
    [14, 6],
    [10, 2],
    [-3, 6]
]


Output
[
    [-1, 2],
    [2, 1],
    [7, 3],
    [5, 1]
]


Explanation

Once we reduce the numbers they become [[2, 1], [2, 1], [7, 3], [7, 3], [5, 1], [-1, 2]]. The result then comes from deduping and sorting by value.



Solution :



title-img




                        Solution in C++ :

bool comparator(vector<int> a, vector<int> b) {
    double v1 = double(a[0]) / double(a[1]), v2 = double(b[0] / double(b[1]));
    return v1 <= v2;
}
vector<vector<int>> solve(vector<vector<int>>& fractions) {
    int n = fractions.size();
    if (n == 0) {
        return {{}};
    }
    for (int i = 0; i < n; i++) {
        int m = __gcd(fractions[i][0], fractions[i][1]);
        fractions[i][0] /= m;
        fractions[i][1] /= m;
        if (fractions[i][1] < 0) {
            fractions[i][1] *= -1;
            fractions[i][0] *= -1;
        }
        // cout<<fractions[i][0]<<" "<<fractions[i][1]<<endl;
    }
    set<pair<int, int>> st;
    for (int i = 0; i < n; i++) {
        st.insert({fractions[i][0], fractions[i][1]});
    }
    vector<vector<int>> ans;
    for (auto x : st) {
        vector<int> temp;
        temp.push_back(x.first);
        temp.push_back(x.second);
        ans.push_back(temp);
    }
    sort(ans.begin(), ans.end(), comparator);
    return ans;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int[][] solve(int[][] fractions) {
        Set<int[]> set = new TreeSet<>(
            (fraction1,
                fraction2) -> (fraction1[0] * fraction2[1]) - (fraction2[0] * fraction1[1]));
        for (int[] fraction : fractions) {
            int a = fraction[0], b = fraction[1];
            int gcd = gcd(Math.max(Math.abs(a), Math.abs(b)), Math.min(Math.abs(a), Math.abs(b)));
            int[] result = new int[] {a / gcd, b / gcd};
            set.add(result);
        }
        int[][] ans = new int[set.size()][2];
        int index = 0;
        for (int[] answer : set) {
            ans[index++] = answer;
        }
        return ans;
    }

    private int gcd(int a, int b) {
        return b == 0 ? a : gcd(b, a % b);
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def GCD(self, x, y):
        if y == 0:
            return x
        return self.GCD(y, x % y)

    def solve(self, fractions):
        s = set()
        vals = []
        for num in fractions:
            n = num[0]
            d = num[1]
            if n / d not in s:
                s.add(n / d)
                vals.append(num)
        vals = sorted(vals, key=lambda frac: frac[0] / frac[1])
        for ind in range(len(vals)):
            num = vals[ind]
            gcd = self.GCD(num[0], num[1])
            vals[ind][0] = num[0] // gcd
            vals[ind][1] = num[1] // gcd
        return vals
                    


View More Similar Problems

Print the Elements of a Linked List

This is an to practice traversing a linked list. Given a pointer to the head node of a linked list, print each node's data element, one per line. If the head pointer is null (indicating the list is empty), there is nothing to print. Function Description: Complete the printLinkedList function in the editor below. printLinkedList has the following parameter(s): 1.SinglyLinkedListNode

View Solution →

Insert a Node at the Tail of a Linked List

You are given the pointer to the head node of a linked list and an integer to add to the list. Create a new node with the given integer. Insert this node at the tail of the linked list and return the head node of the linked list formed after inserting this new node. The given head pointer may be null, meaning that the initial list is empty. Input Format: You have to complete the SinglyLink

View Solution →

Insert a Node at the head of a Linked List

Given a pointer to the head of a linked list, insert a new node before the head. The next value in the new node should point to head and the data value should be replaced with a given value. Return a reference to the new head of the list. The head pointer given may be null meaning that the initial list is empty. Function Description: Complete the function insertNodeAtHead in the editor below

View Solution →

Insert a node at a specific position in a linked list

Given the pointer to the head node of a linked list and an integer to insert at a certain position, create a new node with the given integer as its data attribute, insert this node at the desired position and return the head node. A position of 0 indicates head, a position of 1 indicates one node away from the head and so on. The head pointer given may be null meaning that the initial list is e

View Solution →

Delete a Node

Delete the node at a given position in a linked list and return a reference to the head node. The head is at position 0. The list may be empty after you delete the node. In that case, return a null value. Example: list=0->1->2->3 position=2 After removing the node at position 2, list'= 0->1->-3. Function Description: Complete the deleteNode function in the editor below. deleteNo

View Solution →

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →