51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#num
用numpy里的savetxt()
将变量存储到txt,以便观察。...
代码星球
·
2020-08-15
numpy
里的
savetxt
numpy.hstack(tup)
numpy.hstack(tup)Stackarraysinsequencehorizontally(columnwise).Takeasequenceofarraysandstackthemhorizontallytomakeasinglearray.Rebuildarraysdividedby hspli...
代码星球
·
2020-08-15
numpy.hstack
tup
numpy.random.uniform(记住文档网址)
http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.uniform.html#numpy.random.uniform http://docs.scipy.org/doc/ http://docs....
代码星球
·
2020-08-15
numpy.random.uniform
记住
文档
网址
1038 Recover the Smallest Number (30分)(贪心)
Givenacollectionofnumbersegments,youaresupposedtorecoverthesmallestnumberfromthem.Forexample,given{32,321,3214,0229,87},wecanrecovermanynumberssuchlike32-321-32...
代码星球
·
2020-08-09
1038
Recover
the
Smallest
Number
1024 Palindromic Number (25 分)
Anumberthatwillbethesamewhenitiswrittenforwardsorbackwardsisknownasa PalindromicNumber.Forexample,1234321isapalindromicnumber.Allsingledigitnumbersarepalin...
代码星球
·
2020-08-09
1024
Palindromic
Number
1023 Have Fun with Numbers (20 分)
1023 HaveFunwithNumbers (20 分) Noticethatthenumber123456789isa9-digitnumberconsistingexactlythenumbersfrom1to9,withnoduplication.Doubleitwew...
代码星球
·
2020-08-09
1023
Have
Fun
with
Numbers
1019 General Palindromic Number (20 分)
Anumberthatwillbethesamewhenitiswrittenforwardsorbackwardsisknownasa PalindromicNumber.Forexample,1234321isapalindromicnumber.Allsingledigitnumbersarepalin...
代码星球
·
2020-08-09
1019
General
Palindromic
Number
HDU 1711 Number Sequence KMP
题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=1711AC代码: #include<iostream>#include<cstdio>#include<cstdlib>#include<cmath>#i...
代码星球
·
2020-08-09
HDU
1711
Number
Sequence
KMP
leetcode 17-> Letter Combinations of a Phone Number
classSolution(object):defletterCombinations(self,digits):""":typedigits:str:rtype:List[str]"""ifdigits=="":return[]nums_to_letters={2:"abc",3:"def",4:"ghi...
代码星球
·
2020-08-09
leetcode
Letter
Combinations
of
Phone
在Xshell 6开NumLock时按小键盘上的数字键并不能输入数字
小键盘问题在Xshell6上用vi的时候,开NumLock时按小键盘上的数字键并不能输入数字,而是出现一个字母然后换行(实际上是命令模式上对应上下左右的键)。解决方法选项Terminal->Features里,找到Disableapplicationkeypadmode,选上就可以了在xmanager4中的xsh...
代码星球
·
2020-08-09
数字
Xshell
NumLock
时按
小键盘
leetcode 9 -> Palindrome Number
classSolution(object):defisPalindrome(self,x):""":typex:int:rtype:bool"""s=str(x)if(s==s[::-1]):returnTrueelse:returnFalse ...
代码星球
·
2020-08-09
leetcode
Palindrome
Number
leetcode 2-> Add Two Numbers
classSolution(object):defaddTwoNumbers(self,l1,l2):l3=ListNode(0)current=l3carry=0whilel1orl2:#1,1|None,1|1,None#Pad0ifNoneifl1isNone:l1v=0else:l1v=l1.val...
代码星球
·
2020-08-09
leetcode
Add
Two
Numbers
Add Two Numbers ,使用链表参数
#Definitionforsingly-linkedlist.classListNode(object):def__init__(self,x):self.val=xself.next=NoneclassSolution(object):defaddTwoNumbers(self,l1,l2):l3=Li...
代码星球
·
2020-08-09
Add
Two
Numbers
使用
链表
ERROR: child process failed, exited with error number 100
[root@localhost~]#mongod--dbpath=/usr/local/mongodb/data--logpath=/usr/local/mongodb/logs--logappend--port=27017--forkabouttoforkchildprocess,waitinguntil...
代码星球
·
2020-08-09
ERROR
child
process
failed
exited
求一个整型数字中有没有相同的部分,例如12386123这个整型数字中相同的部分是123,相同的部分至少应该是2位数,如果有相同部分返回1,如果没有则返回0。方法是先将整型数字转换到数组中,再判断。函数为 int same(int num)其中num是输入的整型数字
importjava.util.ArrayList;importjava.util.List;importjava.util.Scanner;publicclassTest{publicstaticvoidmain(String[]args){/***2.求一个整型数字中有没有相同的部分,例如12386123这个整型数...
代码星球
·
2020-08-08
整型
数字
相同
部分
如果
首页
上一页
...
352
353
354
355
356
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他