#tc

js switch 字符串

 //字符串varday="dd";switch(day){case"dd":x="dayit'sdd";break;case"ff":x="dayit'sff";break;default:x="dayisdefault";}输出"dayit'sdd" ...
代码星球 ·2020-08-09

js switch 用法

 //获取星期//例子1varday=newDate().getDay();switch(day){case6:x="Todayit'sSaturday";break;case0:x="Todayit'sSunday";break;default:x="LookingforwardtotheWeekend";...
代码星球 ·2020-08-09

Could not process inbound connection: Client [/rostopic_18439_1555659423249] wants topic , ROS md5sums do not match

  报错如下:[WARN][WallTime:1555659671.447721]Couldnotprocessinboundconnection:Client[/rostopic_18439_1555659423249]wantstopic[/bp_update_feedback]tohaveda...

requests SSLError: hostname 'ccc.xxx.com' doesn't match '*.b0.upaiyun.com'

 证书不匹配问题1.对于python自带的urllib库 解决办法importsslssl.match_hostname=lambdacert,hostname:True2.对于requests库,解决办法requests.get(url='https://192.168.1.223',verify...

Program type already present:okio.AsyncTimeout$Watchdog Message{kind=ERROR, text=Program type :okio

 在app中的build.gradle中加入如下代码,configurations{all*.excludegroup:'com.google.code.gson'all*.excludegroup:'com.squareup.okhttp3'all*.excludegroup:'com.squareup.o...

解決 Android Studio 不停 Indexing 的問題(Updating Indices: Indexing paused due to batch update)

  遇到這個問題通常是IDE更新後,或是反覆使用AndroidStudio開啟其他專案所導致,解決方法其實非常簡單喔! 点击  這個選項的功用是「清除IDE暫存並重啟」,沒錯,會出現上述情形的原因就是AndroidStudio本身的暫存檔出現異常所導致的,單純重開並沒有...

leetcode 查找每个元素都出现两次的列表,返回只出现一次的元素

Givenanarrayofintegers,everyelementappears#twiceexceptforone.Findthatsingleone.classSolution(object):defsingleNumber(self,nums):""":typenums:List[int]:rtype:int...

leetcode 58-> Length of Last Word

 Givenastring s consistsofupper/lower-casealphabetsandemptyspacecharacters '',returnthelengthoflastwordinthestring.Ifthelastworddoesnotexist...

leetcode 53-> Maximum Subarray

 Givenanintegerarray nums,findthecontiguoussubarray (containingatleastonenumber)whichhasthelargestsumandreturnitssum.classSolution(object):defmax...
代码星球 ·2020-08-09

leetcode 46-> Permutations

 Givenacollectionof distinct integers,returnallpossiblepermutations.classSolution(object):defpermute(self,nums):""":typenums:List[int]:rtype:List...
代码星球 ·2020-08-09

leetcode 29-> Divide Two Integers without using multiplication, division and mod operator

 classSolution(object):defdivide(self,dividend,divisor):""":typedividend:int:typedivisor:int:rtype:int"""ispositive=Trueifdividend>0anddivisor<0:ispo...

leetcode 19-> Remove Nth Node From End of List

 #Definitionforsingly-linkedlist.#classListNode(object):#def__init__(self,x):#self.val=x#self.next=NoneclassSolution(object):defremoveNthFromEnd(self,head,...

leetcode 18-> 4Sum

 classSolution(object):deffourSum(self,nums,target):""":typenums:List[int]:typetarget:int:rtype:List[List[int]]"""l=len(nums)nums.sort()ifl<4:return[]re...
代码星球 ·2020-08-09

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...

python tcp .demo

 client:#-*-coding:utf-8-*-importsockets=socket.socket(socket.AF_INET,socket.SOCK_STREAM)s.connect(('127.0.0.1',9999))print(s.recv(1024))fordatain['zhang',...
代码星球 ·2020-08-09
首页上一页...9596979899...下一页尾页