Giter Site home page Giter Site logo

Comments (5)

hamzmu avatar hamzmu commented on July 21, 2024

looks good, works on my end!
image

from mathgenerator.

lukew3 avatar lukew3 commented on July 21, 2024

Getting 0 every time

@autosaver Are you overriding the max_decimal kwarg with decimal_to_roman_numerals(max_decimal=0) or decimal_to_roman_numerals(0) ?

def decimal_to_roman_numerals(max_decimal=4000):

from mathgenerator.

itssammurphy avatar itssammurphy commented on July 21, 2024

@lukew3 I edited the gen_func() associated with decimal_to_roman_numerals (in the site-packages folder where mathgenerator got pip installed) and was able to resolve the issue.
image
In the above snippet, I added a line (as you did in misc.py)

x_copy = x

image
Then in the above snippet, I changed the f-string in the problem statement to reflect the correct variable name.

These fixes corrected the issue, but I'm not sure how to reflect these in my fork to then pull request it as this file isn't in the repository but in the pip installation? I am new to open source contribution so please let me know if I have misread something somewhere or missed a file that's in the fork.

from mathgenerator.

autosaver avatar autosaver commented on July 21, 2024

Getting 0 every time

@autosaver Are you overriding the max_decimal kwarg with decimal_to_roman_numerals(max_decimal=0) or decimal_to_roman_numerals(0) ?

def decimal_to_roman_numerals(max_decimal=4000):

Actually I was calling it directly without variable

from mathgenerator.

autosaver avatar autosaver commented on July 21, 2024

It seems its using :

from ...generator import Generator
import random
import math


def gen_func(maxDecimal=4000):
    x = random.randint(0, maxDecimal)
    roman_dict = {
        1: "I",
        5: "V",
        10: "X",
        50: "L",
        100: "C",
        500: "D",
        1000: "M"
    }
    div = 1
    while x >= div:
        div *= 10
    div /= 10
    solution = ""
    while x:
        last_value = int(x / div)
        if last_value <= 3:
            solution += (roman_dict[div] * last_value)
        elif last_value == 4:
            solution += (roman_dict[div] + roman_dict[div * 5])
        elif 5 <= last_value <= 8:
            solution += (roman_dict[div * 5] + (roman_dict[div] * (last_value - 5)))
        elif last_value == 9:
            solution += (roman_dict[div] + roman_dict[div * 10])
        x = math.floor(x % div)
        div /= 10

    problem = f"The number ${x}$ in Roman Numerals is: "
    return problem, f'${solution}$'


decimal_to_roman_numerals = Generator("Converts decimal to Roman Numerals", 85,
                                      gen_func,
                                      ["maxDecimal=4000"])

Trying to upgrade mathgenerator

from mathgenerator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.