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

Delete duplicate-value nodes from a sorted linked list

This challenge is part of a tutorial track by MyCodeSchool You are given the pointer to the head node of a sorted linked list, where the data in the nodes is in ascending order. Delete nodes and return a sorted list with each distinct value in the original list. The given head pointer may be null indicating that the list is empty. Example head refers to the first node in the list 1 -> 2 -

View Solution →

Cycle Detection

A linked list is said to contain a cycle if any node is visited more than once while traversing the list. Given a pointer to the head of a linked list, determine if it contains a cycle. If it does, return 1. Otherwise, return 0. Example head refers 1 -> 2 -> 3 -> NUL The numbers shown are the node numbers, not their data values. There is no cycle in this list so return 0. head refer

View Solution →

Find Merge Point of Two Lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the head nodes of 2 linked lists that merge together at some point, find the node where the two lists merge. The merge point is where both lists point to the same node, i.e. they reference the same memory location. It is guaranteed that the two head nodes will be different, and neither will be NULL. If the lists share

View Solution →

Inserting a Node Into a Sorted Doubly Linked List

Given a reference to the head of a doubly-linked list and an integer ,data , create a new DoublyLinkedListNode object having data value data and insert it at the proper location to maintain the sort. Example head refers to the list 1 <-> 2 <-> 4 - > NULL. data = 3 Return a reference to the new list: 1 <-> 2 <-> 4 - > NULL , Function Description Complete the sortedInsert function

View Solution →

Reverse a doubly linked list

This challenge is part of a tutorial track by MyCodeSchool Given the pointer to the head node of a doubly linked list, reverse the order of the nodes in place. That is, change the next and prev pointers of the nodes so that the direction of the list is reversed. Return a reference to the head node of the reversed list. Note: The head node might be NULL to indicate that the list is empty.

View Solution →

Tree: Preorder Traversal

Complete the preorder function in the editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's preorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the preOrder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the tree's

View Solution →