国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

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

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的評論 (共 條)

分享到微博請遵守國家法律
拜泉县| 松原市| 新营市| 常宁市| 梁平县| 玉屏| 建宁县| 九江市| 白城市| 绍兴市| 威信县| 娱乐| 周宁县| 贺兰县| 永春县| 江川县| 沙河市| 江源县| 无极县| 吉林省| 繁昌县| 缙云县| 建湖县| 高州市| 隆回县| 衡阳县| 河东区| 岚皋县| 大厂| 铜鼓县| 江孜县| 道孚县| 沂源县| 塘沽区| 双流县| 南昌县| 陆丰市| 成安县| 扶余县| 东兴市| 贺兰县|