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

Function main

1929-concatenation-of-array.rs:1–5  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1fn main() {
2 let nums = vec!(1, 2, 1);
3 let a = get_concatenation(nums);
4 println!("{:?}", a);
5}
6
7// 1929 https://leetcode-cn.com/problems/concatenation-of-array/
8// [1,2,1] [1,2,1,1,2,1]

Callers

nothing calls this directly

Calls 1

get_concatenationFunction · 0.85

Tested by

no test coverage detected