Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is Subsequence #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Is Subsequence #19

wants to merge 1 commit into from

Conversation

rihib
Copy link
Owner

@rihib rihib commented Aug 15, 2024

Is Subsequenceを解きました。レビューをお願い致します。

問題:https://leetcode.com/problems/is-subsequence/
言語:Go

すでに解いた方々:
hayashi-ay/leetcode#64
shining-ai/leetcode#57
goto-untrapped/Arai60#19
SuperHotDogCat/coding-interview#21
nittoco/leetcode#16
Mike0121/LeetCode#25

正規表現で解くということもできると言えばできる(計算理論をちゃんと理解できていないので勉強しなければ、、):goto-untrapped/Arai60#19 (comment)

@rihib
Copy link
Owner Author

rihib commented Aug 15, 2024

この問題に出てきたFollow upがどういう意図なのかよくわからなかった。一文字ずつ見ていくのではなく、もっと効率的に処理できるようにコードを変更しろということなのだろうか?例えば、tに含まれる各文字がどのインデックスに存在するのかを保持するハッシュテーブルを作るなど?

Follow up: Suppose there are lots of incoming s, say s1, s2, ..., sk where k >= 109, and you want to check one by one to see if t has its subsequence. In this scenario, how would you change your code?

参考になりそう→fhiyo/leetcode#55

おそらくこれが一番シンプルなのではないだろうか。
*/
func isSubsequenceStep3(s string, t string) bool {
i, j := 0, 0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for文の外でも使うならi, jの命名をしてもいいと思いました。
s, tのどちらに対応しているくらいが分かると嬉しいです。
s_index, t_indexとかでしょうか。

*/
func isSubsequenceStep3(s string, t string) bool {
i, j := 0, 0
for i < len(s) && j < len(t) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i < len(s) && j < len(t)と条件を並べられてしまうと、jを進めて同じ文字のときにiを進めるという意味が読み取りづらいかと思いました。
step2のコードが意図を把握しやすかったです。

func isSubsequenceStep1(s string, t string) bool {
current := 0
for i := 0; i < len(s); i++ {
for {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://docs.python.org/3/library/stdtypes.html#str.find
Python の .find(sub, start) 相当のものがあるといいですが、なさそうですね。
https://pkg.go.dev/strings#Index
というように時々標準ライブラリーを調べておくといいです。

}
current := 0
for i := 0; i < len(t); i++ {
if s[current] == t[i] {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

currentだとあんまり情報量がない気もするので、こっちもsi, ti(Goではこういう感じで省略するんでしたっけ?)でいいかもです

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants