Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,932 questions

51,869 answers

573 users

How to check if a number can be made prime by deleting a single digit in PHP

1 Answer

0 votes
function remove_the_N_digit($num, $N) {
    $num_str = strval($num);
    
    return intval(substr($num_str, 0, $N) . substr($num_str, $N+1));
}

function is_prime($n) {
    if ($n < 2 || ($n % 2 == 0 && $n != 2)) {
        return false;
    }
    
    $count = intval(sqrt($n));
    for ($i = 3; $i <= $count; $i += 2) {
        if ($n % $i == 0) {
            return false;
        }
    }
    
    return true;
}

$n = 78919;
$total_digits = intval(strlen(strval($n)));

for ($i = 0; $i < $total_digits; $i++) {
    $tmp = remove_the_N_digit($n, $i);
    if (is_prime($tmp)) {
        echo "yes number = " . $tmp;
        break;
    }
}


/*
run:
 
yes number = 7919
 
*/

 



answered Sep 27, 2024 by avibootz

Related questions

...