Skip to content

Instantly share code, notes, and snippets.

@Lokno
Last active January 1, 2026 23:19
Show Gist options
  • Select an option

  • Save Lokno/107dba8cb526851db61d7ff854c0dda5 to your computer and use it in GitHub Desktop.

Select an option

Save Lokno/107dba8cb526851db61d7ff854c0dda5 to your computer and use it in GitHub Desktop.
Expose the existing LevenshteinDistance code to blueprints
#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