规范格式

This commit is contained in:
YDZ
2020-08-07 15:50:06 +08:00
parent 854a339abc
commit 4e11f4028a
1438 changed files with 907 additions and 924 deletions

View File

@ -0,0 +1,17 @@
package leetcode
import "strings"
func findOcurrences(text string, first string, second string) []string {
var res []string
words := strings.Split(text, " ")
if len(words) < 3 {
return []string{}
}
for i := 2; i < len(words); i++ {
if words[i-2] == first && words[i-1] == second {
res = append(res, words[i])
}
}
return res
}

View File

@ -0,0 +1,49 @@
package leetcode
import (
"fmt"
"testing"
)
type question1078 struct {
para1078
ans1078
}
// para 是参数
// one 代表第一个参数
type para1078 struct {
t string
f string
s string
}
// ans 是答案
// one 代表第一个答案
type ans1078 struct {
one []string
}
func Test_Problem1078(t *testing.T) {
qs := []question1078{
question1078{
para1078{"alice is a good girl she is a good student", "a", "good"},
ans1078{[]string{"girl", "student"}},
},
question1078{
para1078{"we will we will rock you", "we", "will"},
ans1078{[]string{"we", "rock"}},
},
}
fmt.Printf("------------------------Leetcode Problem 1078------------------------\n")
for _, q := range qs {
_, p := q.ans1078, q.para1078
fmt.Printf("【input】:%v 【output】:%v\n", p, findOcurrences(p.t, p.f, p.s))
}
fmt.Printf("\n\n\n")
}

View File

@ -0,0 +1,39 @@
# [1078. Occurrences After Bigram](https://leetcode.com/problems/occurrences-after-bigram/)
## 题目:
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.
**Example 1:**
Input: text = "alice is a good girl she is a good student", first = "a", second = "good"
Output: ["girl","student"]
**Example 2:**
Input: text = "we will we will rock you", first = "we", second = "will"
Output: ["we","rock"]
**Note:**
1. `1 <= text.length <= 1000`
2. `text` consists of space separated words, where each word consists of lowercase English letters.
3. `1 <= first.length, second.length <= 10`
4. `first` and `second` consist of lowercase English letters.
## 题目大意
给出第一个词 first 和第二个词 second考虑在某些文本 text 中可能以 "first second third" 形式出现的情况其中 second 紧随 first 出现third 紧随 second 出现。对于每种这样的情况将第三个词 "third" 添加到答案中,并返回答案。
## 解题思路
- 简单题。给出一个 text要求找出紧接在 first 和 second 后面的那个字符串,有多个就输出多个。解法很简单,先分解出 words 每个字符串,然后依次遍历进行字符串匹配。匹配到 first 和 second 以后,输出之后的那个字符串。