欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Leetcode C#答案(自编)

程序员文章站 2024-03-22 14:35:16
...

#1两数之和

public class Solution {
        public int[] TwoSum(int[] nums, int target)
        {
            int[] newIntArr = new int[0];
            for (int i = 0; i < nums.Length; i++)
            {
                for (int j = 0; j < nums.Length; j++)
                {
                    if ((i < j) && nums[i] + nums[j] == target)
                    {
                        newIntArr = new int[] { i, j };
                    }
                }
            }
            return newIntArr;
        }
}

#9回文数

public class Solution {
    public bool IsPalindrome(int x) {
        string str = x.ToString();
        for (int i = 0; i < str.Length/2; i++)
            {
                if (str[i] == str[str.Length-1-i])
                {                      
                    continue;
                }
                else
                {                    
                    return false;
                }
            }
        return true;
    }
}