摘要:
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example, Given n = , You should return the followi 阅读全文
摘要:
Given a set of non overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initia 阅读全文
摘要:
描述 一只木桶能盛多少水,并不取决于桶壁上最高的那块木板,而恰恰取决于桶壁上最短的那块。 已知一个木桶的桶壁由N块木板组成,第i块木板的长度为Ai。 现在小Hi有一个快捷修补工具,每次可以使用修补工具将连续的不超过L块木板提高至任意高度。 已知修补工具一共可以使用M次(M L using names 阅读全文
摘要:
Given a collection of intervals, merge all overlapping intervals. For example, Given , , , , return , , . + 按开始位置大小排序 + 循环数组;如果当前区间的开始位置大于上一个区间的结束位置,将 阅读全文