0% found this document useful (0 votes)
51 views3 pages

0003 Two Sums

Leetcode answer

Uploaded by

trieukhac99
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views3 pages

0003 Two Sums

Leetcode answer

Uploaded by

trieukhac99
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Leetcode 1. Two Sum https://leetcode.ca/all/1.

html

Leetcode Solutions Java Python C++ (https://leetcode.ca)


All contents and pictures on this website come from the Internet and are updated regularly
every week. They are for personal study and research only, and should not be used for
commercial purposes. Thank you for your cooperation.

Welcome to Subscribe On Youtube:

1. Two Sum
Given an array of integers, return indices of the two numbers such that
they add up to a specific target.

You may assume that each input would have exactly one solution, and
you may not use the same element twice.

Example:

Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,


return [0, 1].

Difficulty:
Easy

Lock:
Normal

Company:
Adobe (https://leetcode.ca/tags/#Adobe)

Aetion (https://leetcode.ca/tags/#Aetion)

Affirm (https://leetcode.ca/tags/#Affirm)
Airbnb (https://leetcode.ca/tags/#Airbnb)

Alibaba (https://leetcode.ca/tags/#Alibaba)
Amazon (https://leetcode.ca/tags/#Amazon)

Apple (https://leetcode.ca/tags/#Apple)

Audible (https://leetcode.ca/tags/#Audible)

1 of 3 21/11/2024, 10:58 pm
Leetcode 1. Two Sum https://leetcode.ca/all/1.html

Baidu (https://leetcode.ca/tags/#Baidu)
BlackRock (https://leetcode.ca/tags/#BlackRock)
Bloomberg (https://leetcode.ca/tags/#Bloomberg)

Booking.com (https://leetcode.ca/tags/#Booking.com)
Box (https://leetcode.ca/tags/#Box)

ByteDance (https://leetcode.ca/tags/#ByteDance)
Cisco (https://leetcode.ca/tags/#Cisco) Citadel (https://leetcode.ca/tags/#Citadel)
Citrix (https://leetcode.ca/tags/#Citrix)
Deutsche Bank (https://leetcode.ca/tags/#Deutsche Bank)

DiDi (https://leetcode.ca/tags/#DiDi)
Drawbridge (https://leetcode.ca/tags/#Drawbridge)

Dropbox (https://leetcode.ca/tags/#Dropbox)

eBay (https://leetcode.ca/tags/#eBay) EMC (https://leetcode.ca/tags/#EMC)


Expedia (https://leetcode.ca/tags/#Expedia)

Facebook (https://leetcode.ca/tags/#Facebook)
FactSet (https://leetcode.ca/tags/#FactSet)

GE Digital (https://leetcode.ca/tags/#GE Digital)


GoDaddy (https://leetcode.ca/tags/#GoDaddy)

Goldman Sachs (https://leetcode.ca/tags/#Goldman Sachs)

Google (https://leetcode.ca/tags/#Google)
Groupon (https://leetcode.ca/tags/#Groupon)

Huawei (https://leetcode.ca/tags/#Huawei) IBM (https://leetcode.ca/tags/#IBM)


Indeed (https://leetcode.ca/tags/#Indeed) Intel (https://leetcode.ca/tags/#Intel)

Intuit (https://leetcode.ca/tags/#Intuit)

caMorgan (https://leetcode.ca/tags/#caMorgan)
LinkedIn (https://leetcode.ca/tags/#LinkedIn) Lyft (https://leetcode.ca/tags/#Lyft)

MAQ Software (https://leetcode.ca/tags/#MAQ Software)


Mathworks (https://leetcode.ca/tags/#Mathworks)

Microsoft (https://leetcode.ca/tags/#Microsoft)

Morgan Stanley (https://leetcode.ca/tags/#Morgan Stanley)


NetEase (https://leetcode.ca/tags/#NetEase)

Nvidia (https://leetcode.ca/tags/#Nvidia) Oracle (https://leetcode.ca/tags/#Oracle)


Paypal (https://leetcode.ca/tags/#Paypal)

Qualcomm (https://leetcode.ca/tags/#Qualcomm)

Quora (https://leetcode.ca/tags/#Quora) Radius (https://leetcode.ca/tags/#Radius)


Roblox (https://leetcode.ca/tags/#Roblox)

Salesforce (https://leetcode.ca/tags/#Salesforce)
Samsung (https://leetcode.ca/tags/#Samsung)

SAP (https://leetcode.ca/tags/#SAP)

ServiceNow (https://leetcode.ca/tags/#ServiceNow)

2 of 3 21/11/2024, 10:58 pm
Leetcode 1. Two Sum https://leetcode.ca/all/1.html

Snapchat (https://leetcode.ca/tags/#Snapchat)
Splunk (https://leetcode.ca/tags/#Splunk)
Spotify (https://leetcode.ca/tags/#Spotify)

Tableau (https://leetcode.ca/tags/#Tableau)
Tencent (https://leetcode.ca/tags/#Tencent)

Twilio (https://leetcode.ca/tags/#Twilio)
Twitter (https://leetcode.ca/tags/#Twitter)
Two Sigma (https://leetcode.ca/tags/#Two Sigma)
Uber (https://leetcode.ca/tags/#Uber) Valve (https://leetcode.ca/tags/#Valve)

Visa (https://leetcode.ca/tags/#Visa) VMware (https://leetcode.ca/tags/#VMware)


Walmart Labs (https://leetcode.ca/tags/#Walmart Labs)

Wayfair (https://leetcode.ca/tags/#Wayfair) Wish (https://leetcode.ca/tags/#Wish)

Works Applications (https://leetcode.ca/tags/#Works Applications)


Yahoo (https://leetcode.ca/tags/#Yahoo)

Yandex (https://leetcode.ca/tags/#Yandex) Yelp (https://leetcode.ca/tags/#Yelp)


Zillow (https://leetcode.ca/tags/#Zillow) Zoho (https://leetcode.ca/tags/#Zoho)

Problem Solution

1-Two-Sum (https://leetcode.ca/2015-12-01-1-Two-Sum)

All Problems:

Link to All Problems (https://leetcode.ca/all/


problems.html)
All contents and pictures on this website come from the
Internet and are updated regularly every week. They are for
personal study and research only, and should not be used for
commercial purposes. Thank you for your cooperation.

3 of 3 21/11/2024, 10:58 pm

You might also like