vote up 0 vote down star

What is the following Python code in PHP?

import sys

li = range(1,777);

def countFigure(li, n):
        m = str(n);
        return str(li).count(m);

# counting figures
for substr in range(1,10):
        print substr, " ", countFigure(li, substr);

Wanted output for 777

1   258
2   258
3   258
4   258
5   258
6   258
7   231
8   147
9   147
flag

1 Answer

vote up 1 vote down check

It's been a while since I did any Python but I think this should do it. If you could clarify what str(li) looks like it would help.

<?php

$li = implode('', range(1, 776));

function countFigure($li, $n)
{
    return substr_count($li, $n);
}

// counting figures

foreach (range(1, 9) as $substr)
    echo $substr, " ", countFigure($li, $substr), "\n";
link|flag
Thanks I've edited to correct – Greg Oct 31 at 20:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.