Type Challenges Judge
Problems
Progress
Mutable Keys
Implement the advanced util type MutableKeys<T>, which picks all the mutable (not readonly) keys into a union.
For example:
type Keys = MutableKeys<{ readonly foo: string; bar: number }>; // expected to be “bar”