最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網 會員登陸 & 注冊

Leetcode1170. Compare Strings by Frequency of the Smallest Chara

2022-12-30 16:00 作者:您是打尖兒還是住店呢  | 我要投稿

Let the function?f(s)?be the?frequency of the lexicographically smallest character?in a non-empty string?s. For example, if?s = "dcce"?then?f(s) = 2?because the lexicographically smallest character is?'c', which has a frequency of 2.

You are given an array of strings?words?and another array of query strings?queries. For each query?queries[i], count the?number of words?in?words?such that?f(queries[i])?<?f(W)?for each?W?in?words.

Return?an integer array?answer, where each?answer[i]?is the answer to the?ith?query.

?

Example 1:

Input: queries = ["cbd"], words = ["zaaaz"]Output: [1]Explanation: On the first query we have f("cbd") = 1, f("zaaaz") = 3 so f("cbd") < f("zaaaz").

Example 2:

Input: queries = ["bbb","cc"], words = ["a","aa","aaa","aaaa"]Output: [1,2]Explanation: On the first query only f("bbb") < f("aaaa"). On the second query both f("aaa") and f("aaaa") are both > f("cc").

?

Constraints:

  • 1 <= queries.length <= 2000

  • 1 <= words.length <= 2000

  • 1 <= queries[i].length, words[i].length <= 10

  • queries[i][j],?words[i][j]?consist of lowercase English letters.

這速度真夠慢的。。。。

先寫一個函數(shù)判斷是否小于,一開始是用26長度的整數(shù)數(shù)組,報錯了一次,于是直接把string改為char array了,sort一次,然后遍歷去比對。

另個函數(shù)就是直接去遍歷數(shù)據,放到數(shù)組當中,再返回即可。



Runtime1675 ms

Beats

5.11%

Memory44 MB

Beats

65.53%


Leetcode1170. Compare Strings by Frequency of the Smallest Chara的評論 (共 條)

分享到微博請遵守國家法律
太康县| 屯门区| 丰县| 吉林市| 理塘县| 白玉县| 区。| 淮滨县| 辉南县| 漾濞| 广南县| 县级市| 乃东县| 苍溪县| 汨罗市| 都江堰市| 彝良县| 民勤县| 新野县| 滁州市| 天柱县| 安西县| 六盘水市| 黔西县| 钦州市| 监利县| 宿州市| 平安县| 樟树市| 刚察县| 临洮县| 晋江市| 宕昌县| 大庆市| 田林县| 泰顺县| 和政县| 南靖县| 卓尼县| 恩平市| 南昌县|