-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtwosum.dart
172 lines (138 loc) · 4.42 KB
/
twosum.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* TWO SUM *
-------------
Given an array of integers numbers and an integer target, return indices of
the two numbers such that they add up to target.
You may assume that each input would have exactly one solution,
and you may not use the same element twice.
You can return the answer in any order.
Example 1:
Input: numbers = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because numbers[0] + numbers[1] == 9, we return [0, 1].
Example 2:
Input: numbers = [3,2,4], target = 6
Output: [1,2]
Example 3:
Input: numbers = [3,3], target = 6
Output: [0,1]
Constraints:
2 <= numbers.length <= 104
-109 <= numbers[i] <= 109
-109 <= target <= 109
Only one valid answer exists.
Follow-up: Can you come up with an algorithm that is less than O(n2) time complexity?
*/
/**
*
* SOLUTION
*
* this question is simple it ask us that the sum of any two value
* inside list is should be equal to the target value
*
*
* for example if i have a list
* List<int> a = <int>[1,3,5,6]
* and for example our target int is sum of two and those two elements can be
* any of two inside our list such as 1 + 3, or 5 + 6 , but our target value is specific
* for example we write target is 4 so the it will sum the two and each value inside the
* list till it reach it's result.
*
finally when you run the function and adding the value and print out it in the terminal
* it will give the position of the values inside the list. That position indicates the
* values because their sum will be the target value.
*
*/
class Solution {
// BRUTE FORCE SOLUTION - SIMPLE
// Runtime of this solution is 362ms
List<int> twoSum(List<int> numbers, int target) {
// it indicates the whole length of the list
int n = numbers.length;
// for loop for tracking the first value
for (var i = 0; i < n - 1; i++) {
// for loop for keep tracking the second value inside the list
for (var j = i + 1; j < n; j++) {
// condition that dictates the first of any value inside the list and second inside the
// list should be equal to target
if (numbers[i] + numbers[j] == target) {
// then we return the list of first value and second
return [i, j];
}
}
}
return [];
}
}
/**
*
*
* SOLUTION - 2
*
* ALGORITHMIC APPROACH
* -------------------- NOT Working
*/
class AlgorithmicSolution {
// Runtime of this solution is 310ms
List<int> solution(List<int> numbers, int target) {
int left = 0;
int right = numbers.length - 1;
int tempSum = 0;
while (left < right) {
tempSum = numbers[left] + numbers[right];
if (tempSum == target) {
return [left + 1, right + 1];
}
if (tempSum > target) {
right--;
} else {
left++;
}
}
return [left, right];
}
}
class A {
// Working perfect in Terminal
// but runtime error inclusive range error
// List<int> twoSum(List<int> nums, int target) {
// List<int> result = <int>[];
// for (int i = 0; i < nums.length; i++) {
// int complement = target - nums[i];
// var index = nums.indexOf(complement, i + 1);
// if (nums[index] + nums[i] == target) {
// return result = [i, index];
// }
// break;
// }
// return result;
// }
}
class B {
// In LeetCode the HashMap is not fully implemented
// Runtime 503
List<int> twoSum(List<int> nums, int target) {
// Map to keep an eye on the close range, simply correlation
final Map<int, int> correspondence = Map<int, int>();
// loop through the entire list values
for (var i = 0; i < nums.length; i++) {
// saving value inside a variable
final int value = nums[i];
// we are getting key in a very tricky way like target value which
// we will enter and than we will subtract the single value
//that we got from looping from the list.
//
final int key = target - value;
if (correspondence.containsKey(key)) {
// than we will return if int of the map and the second int
// which shows the position in a list which two value will result the target value
return [correspondence[key]!, i];
}
// here we defining that our key will i the digit inside of our list
// if we don't do this than it will return the value of the list which is inside the list
correspondence[value] = i;
// Remember = correspondence[missing] is Our key , correspondence[value] is Our Value
}
return [];
}
}