思路1 hash

  • 时间复杂度 O(n)

  • 空间复杂度 O(n)

用两个字典统计两边数组中每个数出现的次数,最后在添加到res里

Last updated