Skip to content

Instantly share code, notes, and snippets.

@aksnell
Created June 15, 2020 13:30
Show Gist options
  • Save aksnell/485389454f73a8a22de4dd8e5ba12eb4 to your computer and use it in GitHub Desktop.
Save aksnell/485389454f73a8a22de4dd8e5ba12eb4 to your computer and use it in GitHub Desktop.
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