loop.py 87 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
def remove_self_loops(row, col):
    mask = row != col
    return row[mask], col[mask]