exercism/php/hamming/hamming.php

14 lines
224 B
PHP
Raw Normal View History

2016-08-13 23:20:14 +00:00
<?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
//
}