作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/most-common-word/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 there is at least one word that isn’t banned, and that the answer is unique.

Words in the list of banned words are given in lowercase, and free of punctuation. Words in the paragraph are not case sensitive. The answer is in lowercase.

Example:

Input: 

paragraph = "Bob hit a ball, the hit BALL flew far after it was hit."
banned = ["hit"] Output: "ball" Explanation: "hit" occurs 3 times, but it is a banned word.
"ball" occurs twice (and no other word does), so it is the most frequent non-banned word in the paragraph.
Note that words in the paragraph are not case sensitive,
that punctuation is ignored (even if adjacent to words, such as "ball,"),
and that "hit" isn't the answer even though it occurs more because it is banned.

Note:

  1. 1 <= paragraph.length <= 1000.
  2. 1 <= banned.length <= 100.
  3. 1 <= banned[i].length <= 10.
  4. The answer is unique, and written in lowercase (even if its occurrences in paragraph may have uppercase symbols, and even if it is a proper noun.)
  5. paragraph only consists of letters, spaces, or the punctuation symbols !?',;.
  6. Different words in paragraph are always separated by a space.
  7. There are no hyphens or hyphenated words.
  8. Words only consist of letters, never apostrophes or other punctuation symbols.

题目大意

给出了一段文字,并给出了一个过滤词的列表。要把该段文字全部转化为小写,过滤掉标点符号和过滤词。在剩下的单词里,找出出现次数最多的词。

解题方法

正则+统计

字符串问题都不是问题。

因为要过滤掉标点,所以可以使用很多次的replace函数,但这样太蠢了。直接正则搞定,使用sub函数可以实现替换,即把出现过的标点符号替换成空格" "。并且把字符串转成小写。

例如对于case:

"a, a, a, a, b,b,b,c, c"
["a"]

经过正则把标点替换成空格之后的words的结果:

['a', '', 'a', '', 'a', '', 'a', '', 'b', 'b', 'b', 'c', '', 'c']

剩下的工作就比较简单了:找出不是空字符串并且不在过滤词表里的词,使用Counter统计词频。

most_common函数的参数设为1表示找出出现次数最多的词,返回的格式是[["hit",3]]

Python代码如下:

class Solution:
def mostCommonWord(self, paragraph, banned):
"""
:type paragraph: str
:type banned: List[str]
:rtype: str
"""
p = re.compile(r"[!?',;.]")
sub_para = p.sub(' ', paragraph.lower())
words = sub_para.split(' ')
words = [word for word in words if word and word not in banned]
count = collections.Counter(words)
return count.most_common(1)[0][0]

另外一种正则方法是,只保留字符串。写法如下:

class Solution(object):
def mostCommonWord(self, paragraph, banned):
"""
:type paragraph: str
:type banned: List[str]
:rtype: str
"""
paragraph = re.findall(r"\w+", paragraph.lower())
count = collections.Counter(x for x in paragraph if x not in banned)
return count.most_common(1)[0][0]

日期

2018 年 5 月 27 日 —— 周末的天气很好~
2018 年 11 月 19 日 —— 周一又开始了
2020 年 3 月 26 日 —— 感谢本文评论给出的case

最新文章

  1. ASP.NETC#通用扩展函数之TypeParse 类型转换方便多了
  2. C语言-04-函数
  3. css参考文档; 官方英文说明!! 1 margin padding 百分比参照物 2 margin值为auto时的说明 3 div在div里垂直居中方法 4 dispaly:flex说明
  4. JS匿名函数自执行函数
  5. hdu 1565(状态压缩基础题)
  6. MyBatis(3.2.3) - Configuring MyBatis using XML, Properties
  7. VC++读取图像RGB值
  8. Python 爬虫实例(8)—— 爬取 动态页面
  9. [Mac]macOS Mojave&#160;:发现 Mac 的新功能。
  10. 人生苦短之---第一个Python程序
  11. Freemarker导出带图片的word
  12. html标签之Object标签详解
  13. 【BZOJ3992】【SDOI2015】序列统计
  14. Chubby是什么?
  15. LeetCode题解之Happy Number
  16. maven 安装下载与配置 代理设置 《解决下载慢问题》
  17. JSP的页面连接和提交方式(web基础学习笔记六)
  18. Get a “step-by-step” evaluation in Mathematica
  19. jmeter 配置元件之计数器Counter
  20. (MHA+MYSQL-5.7增强半同步)高可用架构设计与实现

热门文章

  1. 如何优雅地将printf的打印保存在文件中?
  2. Android 获取html中指定标签
  3. 大数据学习day38----数据仓库01-----区域字典的生成
  4. CSS系列,清除浮动方法总结
  5. express系列(1)概述
  6. oracle 日期语言格式化
  7. final&amp;static
  8. CountDownLatch原理
  9. Linux 下使用rtcwake实现定时休眠和唤醒设备
  10. 使用Stream方式处理集合元素