MCPcopy Create free account
hub / github.com/StudyRust/leetcode_rust / main

Function main

1078-occurrences-after-bigram.rs:13–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11}
12
13fn main() {
14 let text = "we will we will rock you".to_string();
15 let first = "we".to_string();
16 let second = "will".to_string();
17
18 println!("{:?}", find_ocurrences(text, first, second));
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected