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

Function main

2490-circular-sentence.rs:21–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19}
20
21fn main() {
22 let sentence = "leetcode exercises sound delightful".to_string();
23 println!("{:?}", is_circular_sentence(sentence));
24 let sentence = "eetcode".to_string();
25 println!("{:?}", is_circular_sentence(sentence));
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected