自定义博客皮肤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)
  • 资源 (2)
  • 收藏
  • 关注

原创 LeetCode 29. Divide Two Integers

problemDo not use multiplication, division and mod to calculate integers division.algorithmMake a list, in which the first value is the divisor and each next number is the double of the front one. ...

2019-10-07 18:00:27 104

原创 LeetCode 28. Implement strStr()

problemReturn the first index substring appear.algorithmTraverse the start index and matching.codeclass Solution: def strStr(self, haystack: str, needle: str) -> int: ln = len(need...

2019-10-07 17:27:50 83

原创 LeetCode 27. Remove Element

problemRemove the elements with value V, and do not use extra space.algorithmTraversing the array, swap the element to the end of the array.codeclass Solution: def removeElement(self, nums: L...

2019-10-07 17:24:01 74

原创 LeetCode 26. Remove Duplicates from Sorted Array

problemCount the different number in the array, and do not use extra space.algorithmTraversing 他和array, swap the number, when find a bigger one.codeclass Solution: def removeDuplicates(self, ...

2019-10-07 17:20:49 83

SOFA: A Multi-Model Framework for Interactive Physical Simulation

HAL is a multi-disciplinary open access archive for the deposit and dissemination of scientific research documents, whether they are published or not. The documents may come from teaching and research institutions in France or abroad, or from public or private research centers.

2018-06-24

空空如也

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

TA关注的人

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