Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StudyRust/leetcode_rust
/ main
Function
main
412-fizz-buzz.rs:18–20 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
16
// 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
17
18
fn main() {
19
println!(
"{:?}"
, fizz_buzz(3));
20
}
21
22
pub fn fizz_buzz(n: i32) -> Vec<String> {
23
let mut res = vec!();
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected