A Very Big Sum

  • + 1 comment

    C# solution

    public static long aVeryBigSum(List<long> ar)
    {
        long sum = ar.Sum(x => Convert.ToInt64(x));
          return sum;
    }