Mini-Max Sum

  • + 0 comments

    Hi Jordan, our solutions aren't quite the same but I was also getting an error I had to convert the original List to a long first using the List.ConvertAll()

    So I had something like List arrLong = arr.ConvertAll(x => (long)x);

    That fixed my problem if you're still having problems let me know and I'll see if I can help you.