双指针 思路: 一个指针负责遍历,另一个指针负责记录,遇到不同值时更新状态。 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
题目描述: 提交: 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
题目描述: 提交: 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默认字典 cd /usr/share/wordlists/ 使用说明 man crunch 查看帮助文件 使用语法 crunch [] [options] 使用参数 description min len 最小长度 max len 最大长度 charset string 字符集 b numb ...
分类:
其他好文 时间:
2020-05-19 14:33:09
阅读次数:
87
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
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
#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
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