Sha256: ac22e1cc224d52b4ef7a4a21edc2cbe407e313cd0aa11e5e5fdff8cf3a69c6c3
Contents?: true
Size: 613 Bytes
Versions: 82
Compression:
Stored size: 613 Bytes
Contents
package acronym // Source: exercism/problem-specifications // Commit: 5ae1dba Acronym canonical-data: Remove redundant test case // Problem Specifications Version: 1.3.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: "GNU Image Manipulation Program", expected: "GIMP", }, { input: "Complementary metal-oxide semiconductor", expected: "CMOS", }, }
Version data entries
82 entries across 82 versions & 1 rubygems