Skip to content
View wmmnola's full-sized avatar
  • Birmingham, AL
Block or Report

Block or report wmmnola

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. OpenNodeTransport OpenNodeTransport Public

    JavaScript

  2. PLTW-ApCompSCI-Collab-Project PLTW-ApCompSCI-Collab-Project Public

    Python 1

  3. FinanceProject FinanceProject Public

    C

  4. A very compact and neat fizzbuzz sol... A very compact and neat fizzbuzz solution
    1
    def fizzbuzz(n):
    2
      for i in range(0, n):
    3
        s = "%d : " % i
    4
        s += "fizz" if i % 3 == 0 else ""
    5
        s += "buzz" if i % 5 == 0 else ""
  5. WebGLBoxes WebGLBoxes Public

    JavaScript

  6. A function which generates finds the... A function which generates finds the primes up to a given n
    1
     def erasto(n):
    2
          primes = [True] * n
    3
          sq = int(math.floor(math.sqrt(n)))
    4
          for i in range(2,sq):
    5
            j = i**2