Function removeDuplicates

  • Removes duplicate strings from the given array based on similarity criteria.

    Returns

    An array of unique strings based on the given similarity criteria.

    Parameters

    • strings: string[]

      An array of strings to process.

    • numberOfSameWords: number

      Number of same words required for strings to be considered similar.

    • minLenghtOfSameWord: number

      Minimum length of a word to be considered for similarity.

    Returns string[]

Generated using TypeDoc