58. implement Diff<A, B>

  -通过 / -执行

Implement DiffKeys<A, B> to return the keys either in A or B, but not in both.

type A = DiffKeys<{a: 1, b: 2}, {b: 1, c: 2}> // 'a' | 'c'

争取10分钟以内搞定这个问题

(16)