14 lines
224 B
PHP
14 lines
224 B
PHP
<?php
|
|
|
|
//
|
|
// This is only a SKELETON file for the "Hamming" exercise. It's been provided as a
|
|
// convenience to get you started writing code faster.
|
|
//
|
|
|
|
function distance($a, $b)
|
|
{
|
|
//
|
|
// YOUR CODE GOES HERE
|
|
//
|
|
}
|