To the Top
File:  root - text - article - 2019 - 11 - merge-overlapping-intervals.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 182 Views, 15522 Search Bots | 76 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Microsoft:

You are given an array of intervals - that is, an array of tuples (start, end). The array may not be sorted, and could contain overlapping intervals. Return another array where the overlapping intervals are merged.

For example:
[(1, 3), (5, 8), (4, 10), (20, 25)]

This input should return [(1, 3), (4, 10), (20, 25)] since (5, 8) and (4, 10) can be merged into (4, 10).

Here's a starting point:


def merge(intervals):
# Fill this in.

print merge([(1, 3), (5, 8), (4, 10), (20, 25)])
# [(1, 3), (4, 10), (20, 25)]
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 182 Views, 15522 Search Bots | 76 Words Subscribe to Feed Burner

Related Articles

  1. Two-Sum
  2. Multitasking
  3. Invert a Binary Tree
  4. Spreadsheet Column Title
  5. Daily Interview Problem: Deepest Node in a Binary Tree
  6. Daily Interview Problem: Merge List Of Number Into Ranges
  7. Daily Interview Problem: Running Median
  8. Daily Interview Problem: Trapping Rainwater
  9. First and Last Indices of an Element in a Sorted Array
  10. Daily Interview Problem: First Missing Positive Integer

Comments (0)

Your Email (Domain Part Not Exposed):

Your Comments:

Privately By Mail Colors More Smileys S x y @

Verification (Click Image 2 Refresh):

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />