The Hamming distance between two strings $a$ and $b$ of equal length is the number of positions where the strings differ.
You are given $n$ bit strings, each of length $k$ and your task is to calculate the minimum Hamming distance between two strings.
The first input line has two integers $n$ and $k$ : the number of bit strings and their length.
Then there are $n$ lines each consisting of one bit string of length $k$ .
Print the minimum Hamming distance between two strings.
5 6 110111 001000 100001 101000 101110
· \n \n \n \n \n \n
1
\n
The strings 101000 and 001000 differ only at the first position.