继续过Hard题目.0207
接上一篇:http://www.cnblogs.com/charlesblc/p/6364102.html
继续过Hard模式的题目吧。
321 | Create Maximum Number | 23.9% | Hard |
题目还是很难的,基本看懂了。里面的greater和merge函数都用的不错:
https://discuss.leetcode.com/topic/32272/share-my-greedy-solution
public boolean greater(int[] nums1, int i, int[] nums2, int j) { while (i < nums1.length && j < nums2.length && nums1[i] == nums2[j]) { i++; j++; } return j == nums2.length || (i < nums1.length && nums1[i] > nums2[j]); }
135 | Candy | 23.9% | Hard |
想法蛮巧妙。
https://discuss.leetcode.com/topic/5243/a-simple-solution