自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

iam.czh

record of experience

  • 博客(5)
  • 收藏
  • 关注

原创 [Leetcode][Medium] 216. Combination Sum III

ProblemExampleInput:Output:Explanation:AnswerExplanationpattern.

2019-06-18 13:52:11 102

原创 [Leetcode][Medium] 721. Accounts Merge

Problemhttps://leetcode.com/problems/accounts-merge/Answerclass Solution {public: vector<vector<string>> accountsMerge(vector<vector<string>>& accounts) { u...

2019-06-17 17:54:47 91

原创 [Leetcode][Medium] 890. Find and Replace Pattern

ProblemYou have a list of words and a pattern, and you want to know which words in words matches the pattern.ExampleInput: words = [“abc”,“deq”,“mee”,“aqq”,“dkd”,“ccc”], pattern = “abb”Output: [“...

2019-05-28 12:52:12 75

原创 [Leetcode][Medium] 889. Construct Binary Tree from Preorder and Postorder Traversal

文章目录ProblemExampleAnswerExplanationProblemReturn any binary tree that matches the given preorder and postorder traversals.Values in the traversals pre and post are distinct positive integers.Examp...

2019-05-27 20:42:54 71

原创 [Leetcode][Easy] 942. DI String Match

这里写自定义目录标题vector<int> diStringMatch(string S) { int left = 0, right = S.size(); vector<int> res; for (char &c : S) res.push_back(c == 'I' ? left++ ...

2019-05-25 15:46:13 71

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除