• This is an archive of the original MKCentral site. You can log in and look around, but not make changes.

    Visit the new MKCentral site at mkcentral.com!

code

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)

Zorm

Member
Founding Member
hello i just figured out we could insert code into the messages so I thought i'd post one lmao
guess what it does
Python:
import numpy as np

def hahaitsasecretlmaoyouthoughtidputitinthename(n):
    for i in range(2,int(np.sqrt(n))+1):
        if n%i == 0:
            return False
    return True
 
Top