码迷,mamicode.com
首页 >  
搜索关键字:uiresponder事件处理 _len    ( 6512个结果
leetcode 每日一题 38. 外观数列
双指针 思路: 一个指针负责遍历,另一个指针负责记录,遇到不同值时更新状态。 class Solution: def countAndSay(self, n: int) -> str: def getResult(para:str)->str: record = para[len(para)-1] ...
分类:其他好文   时间:2020-05-20 14:04:26    阅读次数:45
面试-看清题目重要性
老猫正在上班,忽然微信有人闪我,心中一紧,难道刚上线的服务有出问题了。结果是一个妹子问问题,题目如下:小A有个特殊爱好:喜欢这种字符串:‘ABACA‘,只要不相同的字母不相邻就爱的不要不要的;不喜欢这字符串:‘CAABA‘,只要有相同字母相邻就受不了;题目描述:给定一个字符串(大写字母组成),判断是不是小A喜欢的。她给的答案如下:defislike(values):foriinrange(len(
分类:其他好文   时间:2020-05-20 09:21:55    阅读次数:55
leetcode-189周赛-1452-收藏清单
题目描述: 提交: class Solution: def peopleIndexes(self, f: List[List[str]]) -> List[int]: res = [] dic = collections.defaultdict(list) for i in range(len(f) ...
分类:其他好文   时间:2020-05-19 20:40:53    阅读次数:55
leetcode-189周赛-1451-重新排列句子中的单词
题目描述: 提交: class Solution: def arrangeWords(self, text: str) -> str: text = text.lower().split(" ") text.sort(key = lambda x:len(x)) text[0] = text[0][ ...
分类:其他好文   时间:2020-05-19 20:15:59    阅读次数:62
Kali字典生成工具---crunch
kali默认字典 cd /usr/share/wordlists/ 使用说明 man crunch 查看帮助文件 使用语法 crunch [] [options] 使用参数 description min len 最小长度 max len 最大长度 charset string 字符集 b numb ...
分类:其他好文   时间:2020-05-19 14:33:09    阅读次数:87
152. 乘积最大子数组
class Solution { public: int maxProduct(vector<int>& nums) { int len = nums.size(), res = nums[0]; int prevMin = nums[0], prevMax = nums[0]; int temp1 ...
分类:编程语言   时间:2020-05-18 22:24:53    阅读次数:71
CH579-BLE
Peripheral \EVT\EXAM\BLE\Peripheral\Profile\include\gattprofile.h 1 gattprofile.h //重要 因为只读 需要重新生成一次 2 3 #define SIMPLEPROFILE_CHAR1_LEN 10 4 #define ...
分类:其他好文   时间:2020-05-18 20:54:48    阅读次数:62
c++高精度
#include<stdio.h> #include<string.h> #define yw 10000 //yw表示压4位数 struct node{ int s[10001];//s存储数据 int len,zf;//len存储位数,zf存储正负(1为正-1为负) }; char dr[100 ...
分类:编程语言   时间:2020-05-18 20:34:37    阅读次数:55
内置函数Ⅱ
内置函数Ⅱ 红色重点讲解 :abs() enumerate() filter() map() max() min() open() range() print() len() list() dict() str() reversed() set() sorted() sum() tuple() ty ...
分类:其他好文   时间:2020-05-18 18:52:24    阅读次数:55
Algorithms - Insertion Sort - 插入排序
Python Programming def insertion_sort(A): print('Before: ',A) for j in range(1,len(A)): print('Step ', j) key = A[j] i = j - 1 print(111, i, j, A[i], ...
分类:编程语言   时间:2020-05-18 14:41:24    阅读次数:53
6512条   上一页 1 ... 35 36 37 38 39 ... 652 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!