Sha256: 641a9af4037b08cbcff6e8b6fedaffe3b6d26fd4a61c208c826b7db23a8c8bef
Contents?: true
Size: 687 Bytes
Versions: 21
Compression:
Stored size: 687 Bytes
Contents
package acronym // Source: exercism/problem-specifications // Commit: cae7ae1 acronym: remove test case with mixed-case phrase (#788) // Problem Specifications Version: 1.1.0 type acronymTest struct { input string expected string } var stringTestCases = []acronymTest{ { input: "Portable Network Graphics", expected: "PNG", }, { input: "Ruby on Rails", expected: "ROR", }, { input: "First In, First Out", expected: "FIFO", }, { input: "PHP: Hypertext Preprocessor", expected: "PHP", }, { input: "GNU Image Manipulation Program", expected: "GIMP", }, { input: "Complementary metal-oxide semiconductor", expected: "CMOS", }, }
Version data entries
21 entries across 21 versions & 1 rubygems