Last active
January 1, 2026 23:19
-
-
Save Lokno/107dba8cb526851db61d7ff854c0dda5 to your computer and use it in GitHub Desktop.
Expose the existing LevenshteinDistance code to blueprints
This file contains hidden or 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
| #include "BlueprintLibraryLD.h" | |
| #include "Algo/LevenshteinDistance.h" | |
| int32 UBlueprintLibraryLD::LevenshteinDistance(const FString& A, const FString& B) | |
| { | |
| return Algo::LevenshteinDistance(A, B); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment