Do you know about a hash function, that approximates (in probability) the following function:
Original function: Two vectors collide if there is a row where their entries are equal. $$ \text{E.g., }\quad \begin{pmatrix} 1\\ 2\\ 3 \end{pmatrix} \text{ and } \begin{pmatrix} 4\\ 2\\ 6 \end{pmatrix} \text{ collide (both=2 on row 2),} \qquad \begin{pmatrix} 2\\ 1\\ 3 \end{pmatrix} \text{ and } \begin{pmatrix} 4\\ 2\\ 6 \end{pmatrix} \text{ do not collide.} $$
Hash Function: Do you know about a hash function where the hashes of two vectors $u,v$ are equal (with high probability) if they they had an equal entry on some row (so, $\exists i\colon u_i=v_i$)?
$$ \text{So,}\quad P(h(v)=h(u)) \quad \text{should be high for vectors that have a same entry on some row} $$