File tree Expand file tree Collapse file tree 3 files changed +3
-15
lines changed
solution/0000-0099/0015.3Sum Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -231,11 +231,7 @@ var threeSum = function (nums) {
231
231
### ** C#**
232
232
233
233
``` cs
234
- using System ;
235
- using System .Collections .Generic ;
236
- using System .Linq ;
237
-
238
- public class ThreeSumComparer : IEqualityComparer <IList <int >>
234
+ public class ThreeSumComparer : IEqualityComparer <IList <int >>
239
235
{
240
236
public bool Equals (IList <int > left , IList <int > right )
241
237
{
Original file line number Diff line number Diff line change @@ -208,11 +208,7 @@ var threeSum = function (nums) {
208
208
### ** C#**
209
209
210
210
``` cs
211
- using System ;
212
- using System .Collections .Generic ;
213
- using System .Linq ;
214
-
215
- public class ThreeSumComparer : IEqualityComparer <IList <int >>
211
+ public class ThreeSumComparer : IEqualityComparer <IList <int >>
216
212
{
217
213
public bool Equals (IList <int > left , IList <int > right )
218
214
{
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
-
5
- public class ThreeSumComparer : IEqualityComparer < IList < int > >
1
+ public class ThreeSumComparer : IEqualityComparer < IList < int > >
6
2
{
7
3
public bool Equals ( IList < int > left , IList < int > right )
8
4
{
You can’t perform that action at this time.
0 commit comments