leetcode229 Majority Element IIleetcode#229 Majority Element II Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1) space.arrayleetcode2017-09-09leetcode169 Majority Elementleetcode#169 Majority Element Given an array of size n, find the majority element. The majority element is the element that appears more than⌊ n/2 ⌋ times.arrayleetcode2017-09-09leetcode167 Two Sum II - Input array is sortedleetcode#167 Two Sum II - Input array is sorted Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.arrayleetcode2017-09-08leetcode119 Pascals Triangle IIleetcode#119 Pascals Triangle II Given an index k, return the kth row of the Pascal’s triangle.DynamicProgrammingarrayleetcode2017-09-08leetcode118 Pascal's Triangleleetcode#118 Pascal’s Triangle Given numRows, generate the first numRows of Pascal’s triangle.DynamicProgrammingarrayleetcode2017-09-08leetcode88 Merge Sorted Arrayleetcode#88 Merge Sorted Array Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.arrayleetcode2017-09-07leetcode66 Plus Oneleetcode#66 Plus One Given a non-negative integer represented as a non-empty array of digits, plus one to the integer.arrayleetcode2017-09-07leetcode215 Kth Largest Element in an Arrayleetcode#215 Kth Largest Element in an Array Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.DivideConquerAlgorithmarrayheapleetcode2017-09-07leetcode414 Third Maximum Numberleetcode#414 Third Maximum Number Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time complexity must be in O(n).arrayleetcode2017-09-06leetcode268 Missing Numberleetcode#268 Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.arrayleetcode2017-09-06