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 | 184 Views, 15705 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 | 184 Views, 15705 Search Bots | 76 Words Subscribe to Feed Burner

Related Articles

  1. Kaprekar
  2. Algorithm Interview Question: Nth Fibonacci Number
  3. Daily Interview Problem: Distribute Bonuses
  4. Reverse a Linked List
  5. Progess made
  6. Daily Interview Problem: First Missing Positive Integer
  7. Top K Frequent words
  8. Absolute Path
  9. Batch Programming in XP
  10. Daily Interview Problem: Merge K Sorted Linked Lists

Comments (0)

    Be the first one to comment this page !


Page Edited: May 11 2024 14:36:49 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />