说明已经更新,请大家访问http://www.jianshu.com/p/d2bd4ded4047查看最新使用说明书
题目 Given a string, determine if it is a palindrome, considering only alphanumeric chara...
题目 Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1...
题目 Given a linked list, remove the nthnode from the end of list and return its head.For...
CREAT(创建) git init 在当前目录下创建一个本(Create a new local repository) git clo...
题目 Write a function that takes a string as input and reverse only the vowels of a strin...
Class类 java中类是谁的对象? 类是对象,类是java.lang.Class类的实例对象(there is a class named Class) 表达方式 c1 ...
数据库设置 CREATE DATABASE dbname DEFAULT CHARSET utf8 COLLATE utf8_general_ci; 数据表设置 mysql中...
正则表达式中具有特殊含义的字符称之为元字符,常用的元字符有: \ 一般用于转义字符 \d 匹配数字 \s匹配任意的空白符——空格,制表符(Tab),换行符,中文全角空格等 \...
题目 Follow up for "Remove Duplicates":What if duplicates are allowed at most twice? For ...
题目 Given a sorted array, remove the duplicates in place such that each element appear o...
题目 Given a non-negative integer num, repeatedly add all its digits until the result has...
题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorte...
题目 Given an array of integers, return indices of the two numbers such that they add up ...