Transform an array into another array or a string into another string using only basic transformations
https://levenshtein-transformations.aparoksha.dev/
.gitea | ||
data | ||
Sources/LevenshteinTransformations | ||
Tests | ||
.gitignore | ||
.swiftlint.yml | ||
LICENSE.md | ||
Package.swift | ||
README.md |
Levenshtein Transformations
Transform an array into any other array of the same type, or a string into any other string, using only the three transformations replace
, delete
and insert
.
Table of Contents
Installation
- Open your Swift package in GNOME Builder, Xcode, or any other IDE.
- Open the
Package.swift
file. - Into the
Package
initializer, underdependencies
, paste:
.package(url: "https://git.aparoksha.dev/aparoksha/levenshtein-transformations", from: "0.1.0")
Usage
Read the Getting Started article to learn how to use this package.