代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
/**
* 5083. Occurrences After Bigram
* <p>
* Given words first and second, consider occurrences in some text of the form "first second third",
* where second comes immediately after first, and third comes immediately after second.
* For each such occurrence, add "third" to the answer, and return the answer.
* <p>
* Example 1:
* Input: text = "alice is a good girl she is a good student", first = "a", second = "good"
* Output: ["girl","student"]
* <p>
* Example 2:
* Input: text = "we will we will rock you", first = "we", second = "will"
* Output: ["we","rock"]
* <p>
* Note:
* 1 <= text.length <= 1000
* text consists of space separated words, where each word consists of lowercase English letters.
* 1 <= first.length, second.length <= 10
* first and second consist of lowercase English letters.
*/
public class _1078 {
public static class Solution1 {
public String[] findOcurrences(String text, String first, String second) {
String[] words = text.split(" ");
return IntStream
.range(0, words.length - 2)
.filter(i -> words[i].equals(first) && words[i + 1].equals(second))
.mapToObj(i -> words[i + 2])
.collect(Collectors.toList())
.stream()
.toArray(String[]::new);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。