• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Retrieve the power...

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

随笔分类 -  Algorithms

1 2 3 下一页

 
[Leetcode][Python]56: Merge Intervals
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'56: Merge Intervalshttps://oj.leetcode.com/problems/merge-intervals/Given a collection of ... 阅读全文
posted @ 2015-04-07 03:42 Dabay 阅读(556) 评论(0) 推荐(0)
[Leetcode][Python]55: Jump Game
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'55: Jump Gamehttps://leetcode.com/problems/jump-game/Given an array of non-negative intege... 阅读全文
posted @ 2015-04-07 03:25 Dabay 阅读(387) 评论(0) 推荐(0)
[Leetcode][Python]54: Spiral Matrix
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'54: Spiral Matrixhttps://leetcode.com/problems/spiral-matrix/Given a matrix of m x n eleme... 阅读全文
posted @ 2015-03-30 21:39 Dabay 阅读(431) 评论(0) 推荐(0)
[Leetcode][Python]53: Maximum Subarray
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'53: Maximum Subarrayhttps://leetcode.com/problems/maximum-subarray/Find the contiguous sub... 阅读全文
posted @ 2015-03-30 20:27 Dabay 阅读(590) 评论(0) 推荐(0)
[Leetcode][Python]52: N-Queens II
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'52: N-Queens IIhttps://oj.leetcode.com/problems/n-queens-ii/Follow up for N-Queens problem... 阅读全文
posted @ 2015-03-27 22:25 Dabay 阅读(334) 评论(0) 推荐(0)
[Leetcode][Python]51: N-Queens
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'51: N-Queenshttps://oj.leetcode.com/problems/n-queens/The n-queens puzzle is the problem o... 阅读全文
posted @ 2015-03-27 01:10 Dabay 阅读(526) 评论(0) 推荐(0)
[Leetcode][Python]50: Pow(x, n)
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'50: Pow(x, n)https://leetcode.com/problems/powx-n/Implement pow(x, n).=== Comments by Daba... 阅读全文
posted @ 2015-03-27 01:05 Dabay 阅读(436) 评论(0) 推荐(0)
[Leetcode][Python]49: Anagrams
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'49: Anagramshttps://leetcode.com/problems/anagrams/Given an array of strings, return all g... 阅读全文
posted @ 2015-03-26 01:37 Dabay 阅读(446) 评论(0) 推荐(0)
[Leetcode][Python]48: Rotate Image
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'48: Rotate Imagehttps://leetcode.com/problems/rotate-image/You are given an n x n 2D matri... 阅读全文
posted @ 2015-03-26 01:07 Dabay 阅读(461) 评论(0) 推荐(0)
[Leetcode][Python]47: Permutations II
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'47: Permutations IIhttps://oj.leetcode.com/problems/permutations-ii/Given a collection of ... 阅读全文
posted @ 2015-03-25 01:37 Dabay 阅读(729) 评论(0) 推荐(0)
[Leetcode][Python]46: Permutations
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'46: Permutationshttps://leetcode.com/problems/permutations/Given a collection of numbers, ... 阅读全文
posted @ 2015-03-24 23:26 Dabay 阅读(781) 评论(0) 推荐(0)
[Leetcode][Python]45: Jump Game II
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'45: Jump Game IIhttps://oj.leetcode.com/problems/jump-game-ii/Given an array of non-negati... 阅读全文
posted @ 2015-03-24 23:16 Dabay 阅读(325) 评论(0) 推荐(0)
[Leetcode][Python]44:Wildcard Matching
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'44:Wildcard Matchinghttps://oj.leetcode.com/problems/wildcard-matching/'?' Matches any sin... 阅读全文
posted @ 2015-03-23 22:32 Dabay 阅读(748) 评论(0) 推荐(0)
[Leetcode][Python]43: Multiply Strings
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'43: Multiply Stringshttps://leetcode.com/problems/multiply-strings/Given two numbers repre... 阅读全文
posted @ 2015-03-23 22:27 Dabay 阅读(530) 评论(0) 推荐(0)
[Leetcode][Python]42: Trapping Rain Water
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'42: Trapping Rain Waterhttps://oj.leetcode.com/problems/trapping-rain-water/Given n non-ne... 阅读全文
posted @ 2015-03-19 23:45 Dabay 阅读(471) 评论(0) 推荐(0)
[Leetcode][Python]41: First Missing Positive
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'41: First Missing Positivehttps://oj.leetcode.com/problems/first-missing-positive/Given an... 阅读全文
posted @ 2015-03-19 22:24 Dabay 阅读(472) 评论(0) 推荐(0)
[Leetcode][Python]40: Combination Sum II
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'40: Combination Sum IIhttps://oj.leetcode.com/problems/combination-sum-ii/Given a collecti... 阅读全文
posted @ 2015-02-06 23:49 Dabay 阅读(317) 评论(0) 推荐(0)
[Leetcode][Python]39: Combination Sum
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'39: Combination Sumhttps://oj.leetcode.com/problems/combination-sum/Given a set of candida... 阅读全文
posted @ 2015-02-06 23:48 Dabay 阅读(365) 评论(0) 推荐(0)
[Leetcode][Python]19: Remove Nth Node From End of List
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'38: Count and Sayhttps://oj.leetcode.com/problems/count-and-say/The count-and-say sequence... 阅读全文
posted @ 2015-02-06 05:47 Dabay 阅读(195) 评论(0) 推荐(0)
[Leetcode][Python]37: Sudoku Solver
摘要:# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'37: Sudoku Solverhttps://oj.leetcode.com/problems/sudoku-solver/Write a program to solve a... 阅读全文
posted @ 2015-02-06 03:37 Dabay 阅读(460) 评论(0) 推荐(0)
 

1 2 3 下一页