题解 | #两数之和# Rust

两数之和

https://www.nowcoder.com/practice/20ef0972485e41019e39543e8e895b7f

use std::collections::HashMap;

struct Solution{

}

impl Solution {
    fn new() -> Self {
        Solution{}
    }

    /**
    * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
    *
    * 
        * @param numbers int整型一维数组 
        * @param target int整型 
        * @return int整型一维数组
    */
    pub fn twoSum(&self, numbers: Vec<i32>, target: i32) -> Vec<i32> {
        // write code here
        let mut hash_table = HashMap::new();
        for (index,val) in numbers.iter().enumerate() {
            if hash_table.contains_key(val) {
              return vec![(hash_table[val] +1) as i32, (index +1) as i32];
            }
            hash_table.insert(target - val, index);
        }
        return vec![0,0]
    }
}

全部评论

相关推荐

专心打鱼:互联网搬运工,贴子都要偷
点赞 评论 收藏
分享
头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务