File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Linq ;
3
+
4
+ class Kata
5
+ {
6
+ public static long MinValue ( int [ ] a )
7
+ {
8
+ var res = string . Concat ( a . OrderBy ( x => x ) . Distinct ( ) ) ;
9
+ return Convert . ToInt64 ( res ) ;
10
+ }
11
+ }
Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ JS Video Tutorial) :
464
464
/ [[ Python] ( < (7%20kyu)%20Form%20The%20Minimum/(7%20kyu)%20Form%20The%20Minimum.py > )]
465
465
/ [[ Rust] ( < (7%20kyu)%20Form%20The%20Minimum/(7%20kyu)%20Form%20The%20Minimum.rs > )]
466
466
/ [[ C++] ( < (7%20kyu)%20Form%20The%20Minimum/(7%20kyu)%20Form%20The%20Minimum.cpp > )]
467
- / [ C# ]
467
+ / [[ C# ] ( < (7%20kyu)%20Form%20The%20Minimum/(7%20kyu)%20Form%20The%20Minimum.cs > ) ]
468
468
/ [[ Java] ( < (7%20kyu)%20Form%20The%20Minimum/(7%20kyu)%20Form%20The%20Minimum.java > )]
469
469
/ [ Go]
470
470
<br >
You can’t perform that action at this time.
0 commit comments