M*******a 发帖数: 1633 | 1 Given n array return true if there exist a element from each array whose sum
is zero
这样子的除了暴力法还有什么好办法。 |
c********r 发帖数: 286 | 2 感觉是一道DFS的题
sum
【在 M*******a 的大作中提到】 : Given n array return true if there exist a element from each array whose sum : is zero : 这样子的除了暴力法还有什么好办法。
|
c*******2 发帖数: 60 | 3 如果每个array的长度是m, 复杂度是多少?
sum
【在 M*******a 的大作中提到】 : Given n array return true if there exist a element from each array whose sum : is zero : 这样子的除了暴力法还有什么好办法。
|
T***1 发帖数: 445 | 4 没看懂题目
是长度为n的array还是n个arrays?
是一个元素element还是一组元素elements来满足条件?
Given n array? Given n arrays?
There exist? There exists?
a element? an element? |
L***s 发帖数: 1148 | |