MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / basic

Function basic

78. Subsets/src/main.rs:27–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25
26 #[test]
27 fn basic() {
28 assert_eq!(Solution::subsets(vec![1,2,3]), vec![
29 vec![3],
30 vec![1],
31 vec![2],
32 vec![1,2,3],
33 vec![1,3],
34 vec![2,3],
35 vec![1,2],
36 vec![]
37 ]);
38 }
39}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected