Skip to content
View KerimovEmil's full-sized avatar

Block or report KerimovEmil

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 Loading

  1. ProjectEuler ProjectEuler Public

    Solutions to Project Euler

    Python 4

  2. HigherMathInvestigations HigherMathInvestigations Public

    sandbox for random math investigations

    Python 2 1

  3. MathLatexDocs MathLatexDocs Public

    A repo to keep track of various math PDFs I've created

    TeX

  4. SequenceGuesser SequenceGuesser Public

    Given a sequence of numbers, tries to find the closed form expression that defines the sequence.

    Python 1 1

  5. Identifies the positive integer coef... Identifies the positive integer coefficient polynomial with only two questions
    1
    # Guess's the positive integer coefficient of polynomial f(x), with only two questions
    2
    
                  
    3
    def f(x):
    4
      """Arbitrary make function f(x)"""
    5
      return 0 + 1*x**2 + 222*(x**3) + 678*(x**5)