-
Sebastian Schwarz authoredSebastian Schwarz authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Program.cs 566 B
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Levenshtein
{
class Program
{
private static void Main(string[] args)
{
Levenshtein test = new Levenshtein("industry", "interests");
test.LevenshteinDistance();
CardMechanic test1 = new CardMechanic();
test1.ReadFromScrambled();
test1.ReadFromReference();
//test1.RestoreCards();
}
}
}