Created
June 15, 2020 13:30
-
-
Save aksnell/485389454f73a8a22de4dd8e5ba12eb4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
public class Kata | |
{ | |
public static int LargestPairSum(int[] numbers) | |
{ | |
return numbers.OrderByDescending(x => x).ToArray()[0..2].Sum(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment