Solution to Combine Two Tables by LeetCode

28 Feb

Question: https://oj.leetcode.com/problems/combine-two-tables/ Question Name: Combine Two Tables This problem is used to check our knowledge in JOIN. LEFT JOIN is used here. But we should also know about the others like INNER JOIN, RIGHT JOIN and OUTER JOIN.

Solution to Find Peak Element by LeetCode

26 Dec

Question: https://oj.leetcode.com/problems/find-peak-element/ Question Name: Find Peak Element The key point is: return the index to ANY ONE of the peaks. So O(logN) is possible.

Solution to Intersection of Two Linked Lists by LeetCode

25 Dec

Question: https://oj.leetcode.com/problems/intersection-of-two-linked-lists/ Question Name: Intersection of Two Linked Lists

Solution to Min Stack by LeetCode

21 Dec

Question: https://oj.leetcode.com/problems/min-stack/ Question Name: Min Stack

Solution to Find Minimum in Rotated Sorted Array II by LeetCode

21 Dec

Question: https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/ Question Name: Find Minimum in Rotated Sorted Array II This question is essentially the same as the prevous one.

Solution to Find Minimum in Rotated Sorted Array by LeetCode

20 Oct

Question: https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/ Question Name: Find Minimum in Rotated Sorted Array

Solution to Maximum Product Subarray by LeetCode

29 Sep

Question: https://oj.leetcode.com/problems/maximum-product-subarray/ Question Name: Maximum Product Subarray The following solution is not the optimal. Because the recursion is not necessary. But recursion does make the coding easier.