Here is a C# version
Note: Aggregate is equivalent to reduce in JavaScript or other languages and seed value is the first argument unlike in JavaScript, in which it's the last argument.
Aggregate
reduce
seed
using System; using System.Linq; namespace Solution { class Kata { public static int binaryArrayToNumber(int[] a) { return Convert.ToInt32(a.Aggregate("", (acc, n) => acc + n.ToString()), 2); } } }
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Here is a C# version
Note:
Aggregateis equivalent toreducein JavaScript or other languagesand
seedvalue is the first argument unlike in JavaScript, in which it's the last argument.