G****a 发帖数: 10208 | 1 要2 x m和 2 x n的数组做比较,如果两个
都match上了,就是ture,match不上就是continue
不一定用PERL, C++和JAVA都可以, 能办事就可以 |
t****t 发帖数: 6806 | 2 rephrase your question as it is not clear.
【在 G****a 的大作中提到】 : 要2 x m和 2 x n的数组做比较,如果两个 : 都match上了,就是ture,match不上就是continue : 不一定用PERL, C++和JAVA都可以, 能办事就可以
|
G****a 发帖数: 10208 | 3 要2 x m和 2 x n的数组做比较,如果两个
都match上了,就是ture,match不上就是continue
不一定用PERL, C++和JAVA都可以, 能办事就可以
【在 t****t 的大作中提到】 : rephrase your question as it is not clear.
|
t****t 发帖数: 6806 | 4 ok, so this is condition, what do you want to do with it?
【在 G****a 的大作中提到】 : 要2 x m和 2 x n的数组做比较,如果两个 : 都match上了,就是ture,match不上就是continue : 不一定用PERL, C++和JAVA都可以, 能办事就可以
|
G****a 发帖数: 10208 | 5 两个数组, 我要找出数据同时在两个组里
【在 t****t 的大作中提到】 : ok, so this is condition, what do you want to do with it?
|
D******n 发帖数: 2836 | 6 哈, 我路过的,可是真的不明白lz在说什么。。。。
【在 G****a 的大作中提到】 : 两个数组, 我要找出数据同时在两个组里
|
l********s 发帖数: 358 | 7 if m != n, how can they match?
【在 G****a 的大作中提到】 : 要2 x m和 2 x n的数组做比较,如果两个 : 都match上了,就是ture,match不上就是continue : 不一定用PERL, C++和JAVA都可以, 能办事就可以
|
f**s 发帖数: 2225 | 8 盖神也自制核武器了
【在 G****a 的大作中提到】 : 要2 x m和 2 x n的数组做比较,如果两个 : 都match上了,就是ture,match不上就是continue : 不一定用PERL, C++和JAVA都可以, 能办事就可以
|
r****t 发帖数: 10904 | 9 python:
# True means matched, False means no match
if any((pair for pair in b if pair in a)): whatever_you_want
【在 G****a 的大作中提到】 : 要2 x m和 2 x n的数组做比较,如果两个 : 都match上了,就是ture,match不上就是continue : 不一定用PERL, C++和JAVA都可以, 能办事就可以
|
r****t 发帖数: 10904 | 10 or if your data a and b are like two lists of (x,y) coordinates, do this
if set(a).intersect(set(b)): whatever_you_want
【在 r****t 的大作中提到】 : python: : # True means matched, False means no match : if any((pair for pair in b if pair in a)): whatever_you_want
|