Description: Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words. It is guaranteed the ...
分类:
其他好文 时间:
2019-09-04 13:36:18
阅读次数:
81
0. 准备工作 1. 先备份 2. 创建用户以及创建数据库 3.执行恢复 ...
分类:
数据库 时间:
2019-09-04 09:50:33
阅读次数:
397
Recently George is preparing for the Graduate Record Examinations (GRE for short). Obviously the most important thing is reciting the words. Now Georg ...
分类:
其他好文 时间:
2019-09-03 21:54:30
阅读次数:
67
1. 列表统计 使用count获取单个字符出现次数 使用Counter的most_commom获取 出现次数最多的前几位 2. 字典键值的集合操作 字典的keys()支持 并集 交集 差集 等集合操作 当字典的values都是字符串(无嵌套)时,字典的items()也支持集合操作 断言字典a包含字典 ...
分类:
编程语言 时间:
2019-09-03 19:32:33
阅读次数:
92
原题链接在这里:https://leetcode.com/problems/largest-sum-of-averages/ 题目: We partition a row of numbers A into at most K adjacent (non-empty) groups, then ou ...
分类:
其他好文 时间:
2019-09-03 13:29:25
阅读次数:
87
题目描述George took sticks of the same length and cut them randomly until all parts became at most 50 units long. Now he wants to return sticks to the ori ...
分类:
编程语言 时间:
2019-08-31 17:02:37
阅读次数:
172
https://blog.stephencleary.com/2012/02/async-and-await.html Most people have already heard about the new “async” and “await” functionality coming in V ...
分类:
其他好文 时间:
2019-08-26 19:20:24
阅读次数:
126
ADV 简直;几乎Practically means almost, but not completely or exactly. He'd known the old man practically all his life... 他几乎打记事起就认识这个老人。 N-COUNT 惊叫;感叹;感叹词 ...
分类:
其他好文 时间:
2019-08-26 13:11:03
阅读次数:
102
Description: We are given two strings, A and B. A shift on A consists of taking string A and moving the leftmost character to the rightmost position. ...
分类:
其他好文 时间:
2019-08-26 00:27:18
阅读次数:
63
循环导入 a.py b.py 以a.py为执行文件 出现了以上错误,大概意思就是在 中没有找到 这个属性 执行流程 1.执行a.py,运行到 解释器会去 中去找有没有 这个 主要就是存放之前导入模块的一个字典 2.因为没有找到 这个 所以,去注册 这个 到`sys.module b`的内部,运行到 ...
分类:
其他好文 时间:
2019-08-24 20:56:05
阅读次数:
73