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

Function basic

62. Unique Paths/src/main.rs:24–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22
23 #[test]
24 fn basic() {
25 assert_eq!(Solution::unique_paths(3, 2), 3);
26 assert_eq!(Solution::unique_paths(7, 3), 28);
27 assert_eq!(Solution::unique_paths(1, 2), 1);
28 assert_eq!(Solution::unique_paths(2, 1), 1);
29 }
30}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected