package
0.0.0-20240929173221-e112f79cc91e
Repository: https://github.com/olexandrpodustov/personalperformance.git
Documentation: pkg.go.dev

# README

Isogram

Welcome to Isogram on Exercism's Go Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

Determine if a word or phrase is an isogram.

An isogram (also known as a "non-pattern word") is a word or phrase without a repeating letter, however spaces and hyphens are allowed to appear multiple times.

Examples of isograms:

  • lumberjacks
  • background
  • downstream
  • six-year-old

The word isograms, however, is not an isogram, because the s repeats.

Source

Created by

  • @erizocosmico

Contributed to by

  • @alebaffa
  • @bitfield
  • @da-edra
  • @ekingery
  • @ferhatelmas
  • @hilary
  • @ilmanzo
  • @leenipper
  • @petertseng
  • @robphoenix
  • @sebito91
  • @strangeman
  • @tleen
  • @eklatzer

Based on

Wikipedia - https://en.wikipedia.org/wiki/Isogram

# Functions

No description provided by the author