@@ -45,34 +45,6 @@ Follow-up: Can you come up with an algorithm that is less than O(n2) time comple
45
45
46
46
*/
47
47
48
- void main () {
49
- final solution = Solution ();
50
-
51
- List <int > a = < int > [2 , 3 , 4 ];
52
- int target = 5 ;
53
-
54
- final s = solution.twoSum (a, target);
55
- // print(s);
56
-
57
- // when you print it will show the position of two value
58
- //their sum will be equal to the target value
59
- // print(s);
60
-
61
- // SOLUTION - 2
62
-
63
- final solutions = AlgorithmicSolution ();
64
- final ss = solutions.solution (a, target);
65
- // print(ss);
66
-
67
- final b = A ();
68
- final ba = b.twoSum (a, target);
69
- // print(ba);
70
-
71
- final c = B ();
72
- final ca = c.twoSum (a, target);
73
- print (ca);
74
- }
75
-
76
48
/**
77
49
*
78
50
* SOLUTION
@@ -153,18 +125,18 @@ class A {
153
125
// Working perfect in Terminal
154
126
// but runtime error inclusive range error
155
127
156
- List <int > twoSum (List <int > nums, int target) {
157
- List <int > result = < int > [];
158
- for (var i = 0 ; i < nums.length; i++ ) {
159
- int complement = target - nums[i];
160
- var index = nums.indexOf (complement, i + 1 );
161
- if (nums[index] + nums[i] == target) {
162
- return result = [i, index];
163
- }
164
- break ;
165
- }
166
- return result;
167
- }
128
+ // List<int> twoSum(List<int> nums, int target) {
129
+ // List<int> result = <int>[];
130
+ // for (int i = 0; i < nums.length; i++) {
131
+ // int complement = target - nums[i];
132
+ // var index = nums.indexOf(complement, i + 1);
133
+ // if (nums[index] + nums[i] == target) {
134
+ // return result = [i, index];
135
+ // }
136
+ // break;
137
+ // }
138
+ // return result;
139
+ // }
168
140
}
169
141
170
142
class B {
@@ -194,7 +166,6 @@ class B {
194
166
correspondence[value] = i;
195
167
196
168
// Remember = correspondence[missing] is Our key , correspondence[value] is Our Value
197
-
198
169
}
199
170
return [];
200
171
}
0 commit comments