using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main()
DictionaryExtensionTest();
public static void CombinationsTest()
var listOne = new List<int>() { 4, 5, 15, 2, 8 };
var listTwo = new List<int>() { 8, 7, 5, 3 };
var listThree = new List<int>() { 1, 2, 3, 4 };
var listFour = new List<int>() { 5, 15, 21, 90 };
public static void TwoSumTest()
var listOne = new List<int>() {9, 7, 21, 40};
public static void DictionaryExtensionTest()