Closed kczornik closed 3 years ago
Introduces the normalization of the input and target strings in the UnderstandingModule
private string NormalizeString(string input) { return new string(input.Where(c => !char.IsPunctuation(c)).ToArray()).ToLowerInvariant(); }
Resolves #55 .
Introduces the normalization of the input and target strings in the UnderstandingModule
Resolves #55 .