leetcode C#语言刷题一

Posted hhh江月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode C#语言刷题一相关的知识,希望对你有一定的参考价值。

leetcode C#语言刷题一

题目叙述

求解两数之和

https://leetcode-cn.com/problems/two-sum/

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

你可以按任意顺序返回答案。

题目解答

public class Solution 
    public int[] TwoSum(int[] nums, int target) 
        int [] res = new int[] ;
        for(int i = 0; i < nums.Length; i ++)
            for(int j = 0; j < nums.Length; j ++)
                if(i != j)
                    if(nums[i] + nums[j] == target)
                        res = i>j?new int[] j, i:new int[] i, j;
                    
                
            
        
        return res;
    



以上是关于leetcode C#语言刷题一的主要内容,如果未能解决你的问题,请参考以下文章

leetcode C#语言刷题一

leetcode刷题一

LeetCode刷题01-简单 两数之和 python语言

LeetCode刷题01-简单 两数之和 python语言

leetcode刷题5.有效的括号——Java版

LeetCode 002 数组系列