摘要:You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai
阅读全文
摘要:Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex
阅读全文
摘要:Description: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two li
阅读全文
摘要:Description Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate ex
阅读全文
摘要:Description Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Solution htt
阅读全文
摘要:Description Given an array and a value, remove all instances of that value in place and return the new length. Do not allocate extra space for another
阅读全文