自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

大锅八十小锅四十

伪数据挖掘,伪机器学习,通信狗转cs汪一只,https://tinkle1129.github.io/

  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

原创 leetcode 67. Add Binary

For example, a = “11” b = “1” Return “100”.class Solution(object): def swap(self,a,b): a1,b1=list(a),list(b) a1.reverse() b1.reverse() max_num=max(len(a1),

2016-06-29 19:31:18 205

原创 leetcode 68. Text Justification

Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified. You should pack your words in a greedy approach; that is

2016-06-29 17:16:28 210

原创 leetcode 14. Longest Common Prefix

Write a function to find the longest common prefix string amongst an array of strings.尴尬,一开始没懂题目意思。。。是时候好好学英语了!class Solution(object): def longestCommonPrefix(self, strs): """ :typ

2016-06-29 15:58:34 196

原创 leetcode 17. Letter Combinations of a Phone Number

Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit strin

2016-06-29 12:33:28 231

原创 Leetcode93. Restore IP Addresses

Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example: Given “25525511135”, return [“255.255.11.135”, “255.255.111.35”]. (Order

2016-06-29 12:00:01 391

原创 leetcode练习笔记

leetcode 344. Reverse String Write a function that takes a string as input and returns the string reversed. Example: Example: Given s = “hello”, return “olleh”.思路:将字符串转化为列表,利用列表的revers

2016-06-26 13:43:11 674

统计学习方法笔记(部分算法含matlab代码)

以李航《统计学习方法》为参考,包含自己的理解和部分相关代码~有所不对请大家指出,新手上路,请多指教。

2015-11-17

N-臂老虎机算法(强化学习)

关于强化学习N-臂老虎机算法的理解,包括部分代码和算法流程图

2015-10-11

空空如也

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

TA关注的人

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