interface ISwap {
  from: string,
  to: string
}

interface ICandidate {
  word: string,
  wordOccurences: number
  savings: number
}
