03 2017 档案

摘要:Given a string and an integer k, you need to reverse the first k characters for every 2k characters counting from the start of the string. If there ar 阅读全文
posted @ 2017-03-31 12:47 __Meng 阅读(134) 评论(0) 推荐(0) 编辑
摘要:The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11.11 is read off 阅读全文
posted @ 2017-03-29 19:55 __Meng 阅读(145) 评论(0) 推荐(0) 编辑
摘要:Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the 阅读全文
posted @ 2017-03-26 22:53 __Meng 阅读(114) 评论(0) 推荐(0) 编辑
摘要:Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the rans 阅读全文
posted @ 2017-03-25 19:37 __Meng 阅读(124) 评论(0) 推荐(0) 编辑
摘要:Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. Subscribe to see which companies asked thi 阅读全文
posted @ 2017-03-17 16:12 __Meng 阅读(129) 评论(0) 推荐(0) 编辑
摘要:Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when one of 阅读全文
posted @ 2017-03-14 21:27 __Meng 阅读(124) 评论(0) 推荐(0) 编辑
摘要:Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -> 3 - 阅读全文
posted @ 2017-03-13 23:00 __Meng 阅读(133) 评论(0) 推荐(0) 编辑
摘要:Given a column title as appear in an Excel sheet, return its corresponding column number. For example: C++(3ms): 阅读全文
posted @ 2017-03-12 13:49 __Meng 阅读(152) 评论(0) 推荐(0) 编辑
摘要:Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1. Examples: C++(106ms): 使用unordered_ 阅读全文
posted @ 2017-03-09 17:17 __Meng 阅读(185) 评论(0) 推荐(0) 编辑
摘要:Given two arrays, write a function to compute their intersection. Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2]. Note: Each element i 阅读全文
posted @ 2017-03-08 22:57 __Meng 阅读(155) 评论(0) 推荐(0) 编辑
摘要:Find the sum of all left leaves in a given binary tree. Example: C++(6ms): C++: 阅读全文
posted @ 2017-03-07 14:39 __Meng 阅读(94) 评论(0) 推荐(0) 编辑
摘要:Given an integer, return its base 7 string representation. Example 1: Example 2: Java(15ms): 把一个6进制的数转成7进制 public String convertToBase7(int num) { ret 阅读全文
posted @ 2017-03-05 23:01 __Meng 阅读(150) 评论(0) 推荐(0) 编辑
摘要:Given a non-empty integer array of size n, find the minimum number of moves required to make all array elements equal, where a move is incrementing n  阅读全文
posted @ 2017-03-04 14:45 __Meng 阅读(174) 评论(0) 推荐(0) 编辑
摘要:Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a g 阅读全文
posted @ 2017-03-03 23:12 __Meng 阅读(143) 评论(0) 推荐(0) 编辑
摘要: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. The function 阅读全文
posted @ 2017-03-02 20:45 __Meng 阅读(149) 评论(0) 推荐(0) 编辑
摘要:Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. For example, giv 阅读全文
posted @ 2017-03-01 22:19 __Meng 阅读(130) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示