- 博客(5)
- 收藏
- 关注
原创 连接两个字符串中的不同字符 lintcode python
给出两个字符串, 你需要修改第一个字符串,将所有与第二个字符串中相同的字符删除, 并且第二个字符串中不同的字符与第一个字符串的不同字符连接样例给出 s1 = aacdb, s2 = gafd返回 cbgf给出 s1 = abcs, s2 = cxzca;返回 bsxz思路启发自博客连接两个字符串中的不同字符class Solution
2017-11-03 19:53:40 836
转载 字符串置换 LintCode by python
用排序,一切变得so easyclass Solution: """ @param: A: a string @param: B: a string @return: a boolean """ def Permutation(self, A, B): # write your code here list1=[i
2017-11-02 20:05:23 222
原创 二叉树中路径和为某整数的所有路径 lint code by python
采用博客二叉树中路径和为某整数的所有路径 中的思路 class Solution: """ @param: root: the root of binary tree @param: target: An integer @return: all valid paths """ list_val=[] result=[] d
2017-11-02 19:46:01 341
原创 lintCode 入门题 python版解答
献给我的人生第二春,下面开始问题与答案矩阵面积class Rectangle(): ''' * Define a constructor which expects two parameters width and height here. ''' width = 0.1 height= 0.1 # write your c
2017-10-24 11:06:26 657
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人