State name puzzle: Difference between revisions

m
m (→‎{{header|jq}}: fix typo)
Line 912:
 
# Input: an array of strings
# Output: a dictionary with key:/value pairs: normalizedString: string
def dictionary:
reduce .[] as $s ( {}; . + { ($s|normalize|implode): $s });
2,502

edits