摘要: 作者:小食刻链接:https://www.zhihu.com/question/21096649/answer/72962834来源:知乎著作权归作者所有,转载请联系作者获得授权。 红烧肉家家都会做,每家的做法也都不一样,分享一个我的方法,非常简单,零基础也能做出好吃的红烧肉。先上图< 阅读全文
posted @ 2016-07-20 15:26 Roger's 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 正宗做法不太清楚,不过我的方子是家人朋友每每聚餐都会逼我做的那么美味,而且相当简单,初学者也可以做出来。材料:鸡肉(最好鸡腿),香菇,姜,青椒,酱油(强烈推荐味极鲜酱油),料酒,盐,泰椒。做法如下:1,鸡肉(最好鸡腿)切块,香菇切厚片,青椒滚刀切,姜切成薯条一半大小,泰椒用剪刀剪成小段。2,炒锅大火 阅读全文
posted @ 2016-07-20 14:18 Roger's 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 原文链接:http://blog.sina.com.cn/s/blog_70e965880102ve5v.html 大家下午好, 很荣幸能够参加本次TEDx大会,非常感谢东北财经大学TED团队和华臣影城为我们提供这样一个交流的机会。 自我介绍 我是大连人,高中就读于大连市二十四中。因为当时学习十分不 阅读全文
posted @ 2016-07-20 14:02 Roger's 阅读(108) 评论(0) 推荐(0) 编辑
摘要: Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. For example,Given nums = [0, 1, 阅读全文
posted @ 2016-07-20 13:47 Roger's 阅读(165) 评论(0) 推荐(0) 编辑
摘要: Given two arrays, write a function to compute their intersection. Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2]. 题目:升级版找两个数组的交集,初级 阅读全文
posted @ 2016-07-20 13:30 Roger's 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr 阅读全文
posted @ 2016-07-20 13:25 Roger's 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times. You may assume that the 阅读全文
posted @ 2016-07-20 13:22 Roger's 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n. Example:Given n = 2, return 91. (The answer should be the 阅读全文
posted @ 2016-07-20 11:29 Roger's 阅读(162) 评论(0) 推荐(0) 编辑
摘要: Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: pu 阅读全文
posted @ 2016-07-20 11:09 Roger's 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Given two strings s and t, write a function to determine if t is an anagram of s. For example,s = "anagram", t = "nagaram", return true.s = "rat", t = 阅读全文
posted @ 2016-07-20 11:04 Roger's 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Given a non-empty array of integers, return the k most frequent elements. For example,Given [1,1,1,2,2,3] and k = 2, return [1,2]. 题目:意思很简单就是,找出数组中出现规 阅读全文
posted @ 2016-07-20 10:33 Roger's 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comple 阅读全文
posted @ 2016-07-20 10:28 Roger's 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical a 阅读全文
posted @ 2016-07-20 10:16 Roger's 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except  阅读全文
posted @ 2016-07-20 10:07 Roger's 阅读(149) 评论(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 @ 2016-07-20 09:29 Roger's 阅读(141) 评论(0) 推荐(0) 编辑