Sha256: 12cf1f75f7c02b01f71ecf761cc7695b527d5fa5a4fca2942ee252a076739a08

Contents?: true

Size: 1.37 KB

Versions: 74

Compression:

Stored size: 1.37 KB

Contents

# Isogram

Determine if a word or phrase is an isogram.

An isogram (also known as a "nonpattern 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.

## Installation
See [this guide](https://github.com/exercism/xr/blob/master/docs/INSTALLATION.md) for instructions on how to setup your local R environment.

## How to implement your solution
In each problem folder, there is a file named `<exercise_name>.R` containing a function that returns a `NULL` value. Place your implementation inside the body of the function.

## How to run tests
Inside of RStudio, simply execute the `test_<exercise_name>.R` script. This can be conveniently done with [testthat's `auto_test` function](https://www.rdocumentation.org/packages/testthat/topics/auto_test). Because exercism code and tests are in the same folder, use this same path for both  `code_path` and `test_path` parameters. On the command-line, you can also run `Rscript test_<exercise_name>.R`.

## Source

Wikipedia [https://en.wikipedia.org/wiki/Isogram](https://en.wikipedia.org/wiki/Isogram)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

74 entries across 74 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/r/exercises/isogram/README.md
trackler-2.2.1.138 tracks/r/exercises/isogram/README.md
trackler-2.2.1.137 tracks/r/exercises/isogram/README.md
trackler-2.2.1.136 tracks/r/exercises/isogram/README.md
trackler-2.2.1.135 tracks/r/exercises/isogram/README.md
trackler-2.2.1.134 tracks/r/exercises/isogram/README.md
trackler-2.2.1.133 tracks/r/exercises/isogram/README.md
trackler-2.2.1.132 tracks/r/exercises/isogram/README.md
trackler-2.2.1.131 tracks/r/exercises/isogram/README.md
trackler-2.2.1.130 tracks/r/exercises/isogram/README.md
trackler-2.2.1.129 tracks/r/exercises/isogram/README.md
trackler-2.2.1.128 tracks/r/exercises/isogram/README.md
trackler-2.2.1.127 tracks/r/exercises/isogram/README.md
trackler-2.2.1.126 tracks/r/exercises/isogram/README.md
trackler-2.2.1.125 tracks/r/exercises/isogram/README.md
trackler-2.2.1.124 tracks/r/exercises/isogram/README.md
trackler-2.2.1.123 tracks/r/exercises/isogram/README.md
trackler-2.2.1.122 tracks/r/exercises/isogram/README.md
trackler-2.2.1.121 tracks/r/exercises/isogram/README.md
trackler-2.2.1.120 tracks/r/exercises/isogram/README.md