From 732542740e81a75f122bdfbf4f55c2f9d168c893 Mon Sep 17 00:00:00 2001 From: Sean Prashad Date: Fri, 23 Oct 2020 23:32:15 -0400 Subject: [PATCH] Add Median of Two Sorted Arrays question --- src/data/index.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/data/index.js b/src/data/index.js index ffc4c364..cf2a095f 100644 --- a/src/data/index.js +++ b/src/data/index.js @@ -2018,6 +2018,23 @@ const questions = [ premium: false, companies: ['Google'], }, + { + id: 173, + name: 'Median of Two Sorted Arrays', + url: 'https://leetcode.com/problems/median-of-two-sorted-arrays/', + pattern: ['Binary Search'], + difficulty: 'Hard', + premium: false, + companies: [ + 'Amazon', + 'Goldman Sachs', + 'Apple', + 'Google', + 'Facebook', + 'Microsoft', + 'Bloomberg', + ], + }, ]; const sortBy = { Easy: 0, Medium: 1, Hard: 2 };