Sha256: 9501b928305ae6907a79c173f3ca8df62ba978d8fa42fdae3d8e0c02bd584d02

Contents?: true

Size: 1.93 KB

Versions: 65

Compression:

Stored size: 1.93 KB

Contents

{
  "exercise": "isogram",
  "comments": [
    "An isogram is a word or phrase without a repeating letter."
  ],
  "version": "1.2.0",
  "cases": [
    {
      "description": "Check if the given string is an isogram",
      "comments": [
        "Output should be a boolean denoting if the string is a isogram or not."
      ],
      "cases": [
        {
          "description": "empty string",
          "property": "isIsogram",
          "input": "",
          "expected": true
        },
        {
          "description": "isogram with only lower case characters",
          "property": "isIsogram",
          "input": "isogram",
          "expected": true
        },
        {
          "description": "word with one duplicated character",
          "property": "isIsogram",
          "input": "eleven",
          "expected": false
        },
        {
          "description": "longest reported english isogram",
          "property": "isIsogram",
          "input": "subdermatoglyphic",
          "expected": true
        },
        {
          "description": "word with duplicated character in mixed case",
          "property": "isIsogram",
          "input": "Alphabet",
          "expected": false
        },
        {
          "description": "hypothetical isogrammic word with hyphen",
          "property": "isIsogram",
          "input": "thumbscrew-japingly",
          "expected": true
        },
        {
          "description": "isogram with duplicated hyphen",
          "property": "isIsogram",
          "input": "six-year-old",
          "expected": true
        },
        {
          "description": "made-up name that is an isogram",
          "property": "isIsogram",
          "input": "Emily Jung Schwartzkopf",
          "expected": true
        },
        {
          "description": "duplicated character in the middle",
          "property": "isIsogram",
          "input": "accentor",
          "expected": false
        }
      ]
    }
  ]
}

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
trackler-2.2.1.105 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.104 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.103 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.102 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.101 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.100 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.99 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.98 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.97 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.96 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.95 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.94 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.93 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.92 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.91 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.90 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.89 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.88 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.87 problem-specifications/exercises/isogram/canonical-data.json
trackler-2.2.1.86 problem-specifications/exercises/isogram/canonical-data.json