Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2022-10-01 #64

Open
github-actions bot opened this issue Sep 30, 2022 · 1 comment
Open

2022-10-01 #64

github-actions bot opened this issue Sep 30, 2022 · 1 comment

Comments

@github-actions
Copy link

No description provided.

@Akiq2016
Copy link

Akiq2016 commented Oct 1, 2022

/*
 * @lc app=leetcode.cn id=167 lang=javascript
 *
 * [167] 两数之和 II - 输入有序数组
 */

// @lc code=start
/**
 * @param {number[]} numbers
 * @param {number} target
 * @return {number[]}
 */
var twoSum = function (numbers, target) {
  const map = {};
  for (let i = 0; i < numbers.length; i++) {
    const curVal = numbers[i];
    const anotherVal = target - curVal;
    if (anotherVal > curVal) {
      map[anotherVal] = i;
    } else if (anotherVal === curVal && map[anotherVal] === undefined) {
      map[anotherVal] = i;
    } else {
      if (map[curVal] !== undefined) {
        return [map[curVal] + 1, i + 1];
      }
    }
  }
};
// @lc code=end

Nickname: Aki
From vscode-hzfe-algorithms

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant