1 2 3 4 5 6 7
// id=1 slug=two-sum lang=rust impl Solution { pub fn two_sum(nums: Vec<i32>, target: i32) -> Vec<i32> { } }