938664978
938664978
全部文章
分类
AI(18)
algorithm(18)
C(6)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
(共226篇)
[leetcode] Remove Duplicates from Sorted Array python
problem: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allo...
2020-07-14
0
481
[leetcode]Reverse Words in a String
problem: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky th...
2020-07-14
0
485
python 中的内置函数 与 类
python这种语言的变量命名规则有些奇葩,我相信大家已经遇到过了,比如:__future__。这种特殊的形式表明,这个 变量有特殊的意义,你不可以在自己的代码中创造这类变量。 1.__init__() 构造函数 类似于c++,java等面向对象语言,python 在类的定义中也有构造函数,这...
2020-07-14
0
676
Python 生成器 generator
生成器给人的感觉就是用非正常的函数语言定义的迭代器。 任何函数,只要有yield语句,都是迭代器。 例如: nested_list = [[1,2],[3,4],[5]] def aGen(nested_list): for i in nested_list: f...
2020-07-14
0
507
[leetcode] python Remove Duplicates from Sorted Array II
problem: Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For example, Given sorted array A = [1,1,1,2...
2020-07-14
0
527
[leetcode] Search in Rotated Sorted Array Python
Problem: Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). You are ...
2020-07-14
0
436
利用xlrd处理Excel文件
1 2 3 4 5 6 7 8 ...
2020-07-14
0
504
利用python的csv库处理csv文件
.csv 文件是我们日常生活中经常遇到的文件类型。 一般来说,处理csv文件,直接利用Excel就可以了。但是,如果csv文件特别大,直接用Excel把文件打开的话很占内存。 这时候,我们的python就可以排上用场了。 首先,我们先看看利用csv.reader()处理csv文件 ...
2020-07-14
0
634
Numpy 基础
Numpy 是广泛应用于学术,工业的python数值计算库,其底层源码由C,Fortran写成。 由于python语言灵活,简洁,而且在数值计算中有numpy,scipy,sympy这类数值计算库的依托,使得快速开发 数值算法十分简便。所以python在数值计算中应用十分广泛,而numpy更是p...
2020-07-14
0
660
SciPy 基础
SciPy以NumPy为基础,提供了应用更加广泛的科学计算工具。 其在以下方面有着优秀的函数库: 1.线性代数 2.数值积分 3.插值 4.优化 5.随机数生成 6.信号处理 7.图像处理 8.其他 与NumPy一样,SciPy有着稳定,成熟,且应用广泛的数值运算库。 许多Sc...
2020-07-14
0
503
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页