380. Intersection of Two Linked Lists https://www.lintcode.com/problem/intersection-of-two-linked-lists/description?_from=ladder&&fromId=1 102. Linked ...
分类:
其他好文 时间:
2019-05-19 10:10:21
阅读次数:
95
380. Intersection of Two Linked Lists https://www.lintcode.com/problem/intersection-of-two-linked-lists/description?_from=ladder&&fromId=1 102. Linked ...
分类:
其他好文 时间:
2019-05-18 14:01:21
阅读次数:
103
382. Triangle Count https://www.lintcode.com/problem/triangle-count/description 148. Sort Colors https://www.lintcode.com/problem/sort-colors/descript ...
分类:
其他好文 时间:
2019-05-13 12:37:59
阅读次数:
152
604. Window Sum https://www.lintcode.com/problem/window-sum/description?_from=ladder&&fromId=1 自己写的方法: 九章的答案: ...
分类:
其他好文 时间:
2019-05-10 13:22:43
阅读次数:
121
/* 给定一个字符串(以字符数组的形式给出)和一个偏移量,根据偏移量原地旋转字符串(从左向右旋转) */ public class Lint8 { public static void main(String[] args) { } public void rotateString(char[] s... ...
分类:
其他好文 时间:
2019-05-06 01:44:19
阅读次数:
142
import java.util.ArrayList; import java.util.List; public class Lint9 { /* * 判断能不能被整除 */ public static void main(String[] args) { // TODO Auto-generat... ...
分类:
其他好文 时间:
2019-05-06 01:34:17
阅读次数:
110
public class Solution { /** * @param source: * @param target: * @return: return the index */ public int strStr(String source, String target) { // Writ... ...
分类:
其他好文 时间:
2019-05-06 01:33:48
阅读次数:
158
import java.util.Arrays; public class Lint6 { /* * 合并两个排序的整数数组A和B变成一个新的数组。新数组也要有序。 */ public static void main(String[] args) { } public int[] mergeSor... ...
分类:
编程语言 时间:
2019-05-06 01:33:30
阅读次数:
144
public class Solution { /** * @param nums: The integer array. * @param target: Target to find. * @return: The first position of target. Position start... ...
分类:
其他好文 时间:
2019-05-06 01:19:14
阅读次数:
133
public class Solution { /** * @param s1: A string * @param s2: A string * @param s3: A string * @return: Determine whether s3 is formed by interleavin... ...
分类:
其他好文 时间:
2019-05-06 01:06:40
阅读次数:
162