自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 Numpy库练习

Exercise 9.1: Matrix operations Calculate A + A, AA>,A>A and AB. Write a function that computes A(B−λI) for any λ. import numpydef calc(A,B,x): I=numpy.eye(m) return numpy.dot(A,B-I*x)...

2018-05-22 20:33:12 467

原创 LeetCode 3.Longest Substring Without Repeating Characters

DescriptionGiven a string, find the length of the longest substring without repeating characters.Solution循环一遍,每次对当前位置之前的每个字母从后往前第二次出现的位置取max,与当前位置做差,即得到答案,用字典实现复杂度为O(n)Codeclass Solution(object): ...

2018-05-22 20:29:24 113

原创 LeetCode2. Add Two Number

DescriptionYou are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers a...

2018-05-22 20:26:04 126

原创 LeetCode1. two sum

DescriptionGiven an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use ...

2018-05-22 20:24:46 136

空空如也

空空如也

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

TA关注的人

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