leetcode1. Two Sum

    技术2025-11-17  17

    Two Sum class Solution { public int[] twoSum(int[] nums, int target) { int n = nums.length; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ if(nums[i]+nums[j]==target) return new int[]{i,j}; } } return new int[]{-1,-1}; } }
    Processed: 0.018, SQL: 10