#255·leetcode

1: Two Sum: Go: signature is too broad

Author: vitaly-zdanevichCreated Sep 30, 2021Updated Sep 30, 2021

Actual:

func twoSum(nums []int, target int) []int

Expected:

func twoSum(nums []int, target int) [2]int