Cosmoteer Modding Documentation

Popular Posts

Thursday, 26 January 2023

Leet Code: Problem 1: Two Sum


Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.


 class Solution {

    public int[] twoSum(int[] nums, int target) {
       
        for (int i=0; i <nums.length; i++){

            for (int j= i + 1; j <nums.length; j++){
                if (nums[i] + nums[j] == target) {
                    return new int[] {i, j};
                }
            }
        }
    return nums;
}

}

No comments:

Post a Comment