forked from exercism/problem-specifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acronym.json
37 lines (37 loc) · 1.06 KB
/
acronym.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"abbreviate": {
"description": "Abbreviate a phrase",
"cases": [
{
"description": "basic",
"phrase": "Portable Network Graphics",
"expected": "PNG"
},
{
"description": "lowercase words",
"phrase": "Ruby on Rails",
"expected": "ROR"
},
{
"description": "camelcase",
"phrase": "HyperText Markup Language",
"expected": "HTML"
},
{
"description": "punctuation",
"phrase": "First In, First Out",
"expected": "FIFO"
},
{
"description": "all caps words",
"phrase": "PHP: Hypertext Preprocessor",
"expected": "PHP"
},
{
"description": "hyphenated",
"phrase": "Complementary metal-oxide semiconductor",
"expected": "CMOS"
}
]
}
}