Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了[Swift]LeetCode819. 最常见的单词 | Most Common Word大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

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

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 <= paragraph.length <= 1000.
  • 1 <= bAnned.length <= 100.
  • 1 <= bAnned[i].length <= 10.
  • 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.)
  • paragraph only consists of letters,spaces,or the punctuation symbols !?‘,;.
  • There are no hyphens or hyphenated words.
  • Words only consist of letters,never apostrophes or other punctuation symbols.

给定一个段落 (paragraph) 和一个禁用单词列表 (bAnned)。返回出现次数最多,同时不在禁用列表中的单词。题目保证至少有一个词不在禁用列表中,而且答案唯一。

禁用列表中的单词用小写字母表示,不含标点符号。段落中的单词不区分大小写。答案都是小写字母。 

例:

输入: 
paragraph = "Bob hit a ball,the hit BALL flew far after it was hit."
bAnned = ["hit"]
输出: "ball"
解释: 
"hit" 出现了3次,但它是一个禁用的单词。
"ball" 出现了2次 (同时没有其他单词出现2次),所以它是段落里出现次数最多的,且不在禁用列表中的单词。 
注意,所有这些单词在段落里不区分大小写,标点符号需要忽略(即使是紧挨着单词也忽略, 比如 "ball,"), 
"hit"不是最终的答案,然它出现次数更多,但它在禁用单词列表中。 

说明:

  • 1 <= 段落长度 <= 1000.
  • 1 <= 禁用单词个数 <= 100.
  • 1 <= 禁用单词长度 <= 10.
  • 答案是唯一的,且都是小写字母 (即使在 paragraph 里是大写的,即使是一些特定的名词,答案都是小写的。)
  • paragraph 只包含字母、空格和下列标点符号!?‘,;.
  • 不存在没有连字符或者带有连字符的单词。
  • 单词里只包含字母,不会出现省略号或者其他标点符号

待完善

 1 class Solution {
 2     func mostCommonWord(_ paragraph: String,_ bAnned: [String]) -> String {        
 3     var result = [String: Int]()
 4     paragraph
 5         .lowercased()
 6         .components(separatedBy: CharacterSet(charactersIn: "!?‘,;.")).joined()
 7         .split(separator: " ")
 8         .map(String.init)
 9         .filter { !bAnned.contains($0) }
10         .forEach {
11             result[$0,default: 0] += 1
12         }
13 
14     return result.sorted { $0.value > $1.value }.first?.key ?? ""
15     }
16 }

大佬总结

以上是大佬教程为你收集整理的[Swift]LeetCode819. 最常见的单词 | Most Common Word全部内容,希望文章能够帮你解决[Swift]LeetCode819. 最常见的单词 | Most Common Word所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。