
LeetCode
文章平均质量分 93
CaspianR
最朴素的生活,和最遥远的理想
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCodeEasyLevel
LeetCode简单难度练习原创 2016-08-01 20:18:07 · 390 阅读 · 0 评论 -
Water and Jug Problem
题目描述如下 You are given two jugs with capacities x and y litres. There is an infinite amount of water supply available. You need to determine whether it is possible to measure exactly z litres using thes原创 2016-09-07 19:57:39 · 437 阅读 · 0 评论 -
Leetcode
IsSubsequence Python class Solution(object): def isSubsequence(self, s, t): """ :type s: str :type t: str :rtype: bool """ for i, ele in enumerate(s): if ele原创 2017-03-20 21:03:28 · 466 阅读 · 0 评论