class Solution {
public:
int wordsTyping(vector<string>& sentence, int rows, int cols) {
}
};
418. 屏幕可显示句子的数量
给你一个 rows x cols
的屏幕和一个用 非空 的单词列表组成的句子,请你计算出给定句子可以在屏幕上完整显示的次数。
注意:
rows
, cols
≤ 20,000.
示例 1:
输入: rows = 2, cols = 8, 句子 sentence = ["hello", "world"] 输出: 1 解释: hello--- world--- 字符 '-' 表示屏幕上的一个空白位置。
示例 2:
输入: rows = 3, cols = 6, 句子 sentence = ["a", "bcd", "e"] 输出: 2 解释: a-bcd- e-a--- bcd-e- 字符 '-' 表示屏幕上的一个空白位置。
示例 3:
输入: rows = 4, cols = 5, 句子 sentence = ["I", "had", "apple", "pie"] 输出: 1 解释: I-had apple pie-I had-- 字符 '-' 表示屏幕上的一个空白位置。
原站题解