mirror of
https://github.com/Xevion/exercism.git
synced 2026-02-01 02:24:24 -06:00
2 lines
109 B
Python
2 lines
109 B
Python
def transform(legacy):
|
|
return {value.lower() : key for key, values in legacy.items() for value in values} |