leetcode_rust/
four_sum.rs

1#![allow(dead_code)]
2#![allow(unused_variables)]
3#![allow(unused_imports)]
4
5// todo
6pub fn four_sum(nums: Vec<i32>, target: i32) -> Vec<Vec<i32>> {
7    unimplemented!()
8}
9
10#[cfg(test)]
11mod tests {
12    use super::*;
13
14    #[test]
15    fn test1() {
16        assert_eq!(1, 1);
17    }
18}