mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 13:15:00 -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} |