摘要: ``` import org.lep.leetcode.groupanagrams.GroupAnagram; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Source : https://oj.leetcode.com/problems/gray-code/ * * ... 阅读全文
posted @ 2017-10-31 08:24 lacker 阅读(110) 评论(0) 推荐(0) 编辑
摘要: ``` import java.util.Arrays; /** * Source : https://oj.leetcode.com/problems/merge-sorted-array/ * * * Given two sorted integer arrays A and B, merge B into A as one sorted array. * * Note: * ... 阅读全文
posted @ 2017-10-31 08:23 lacker 阅读(116) 评论(0) 推荐(0) 编辑
摘要: ``` import java.util.Arrays; / Source : https://oj.leetcode.com/problems/scramble string/ Given a string s1, we may represent it as a binary tree by p 阅读全文
posted @ 2017-10-31 00:03 lacker 阅读(164) 评论(0) 推荐(0) 编辑
摘要: ``` / Source : https://oj.leetcode.com/problems/partition list/ Given a linked list and a value x, partition it such that all nodes less than x come b 阅读全文
posted @ 2017-10-31 00:02 lacker 阅读(141) 评论(0) 推荐(0) 编辑