Skip Navigation
Jump
General Discussion Thread - Juche 113, Week 12
  • Fixed it now!

    def Fmmin():
        for n in range(2, number):
            if number % n == 0:
                return n
            if n == number - 1 and number - 1 % n != 0:
                return 0
    def Fmmax():
        for n in range(number-1, 1, -1):
            if number % n == 0:
                return n
            if n == 2 and number % n != 0:
                return 0
    
    2
  • Jump
    General Discussion Thread - Juche 113, Week 12
  • I figured it out! I just needed to use break.

    num = []
    Ms = []
    def Fmmin(va):
        while va == 0:
            for n in range(2, number):
                if number % n == 0:
                    va = n
                    break
                if n == number - 1 and number - 1 % n != 0:
                    va = '0'
        return va
    def Fmmax(va):
        while va == 0:
            for n in range(number-1, 1, -1):
                if number % n == 0:
                    va = n
                    break
                if n == 2 and number % n != 0:
                    va = '0'
        return va
    
    for f in range(1,10000000):
        number = 452021 + f
        mmin = 0
        mmax = 0
        mmin = Fmmin(mmin)
        mmax = Fmmax(mmax)
        if int(mmax) > 0 and int(mmin) > 0:
            M = mmax + mmin
            if M % 7 == 3:
                num.append(number)
                Ms.append(M)
        if len(num) >= 5:
            break
    print(Ms)
    print(num)
    
    2
  • Jump
    General Discussion Thread - Juche 113, Week 12
  • num = []
    Ms = []
    while len(num) <= 5:
        for f in range(1,1000000):
            a = 452021 + f
            mmin = 0
            mmax = 0
            while mmin == 0:
                for n in range(2,a-1):
                    if a % n == 0:
                        mmin = n
                    if n == a-1 and a % n != 0:
                        mmin = '0'
            while mmax == 0:
                for n in range(a-1,2,-1):
                    if a % n == 0:
                        mmax = n
                    if n == 2 and a % n !=0:
                        mmax = '0'
            M = int(mmax) + int(mmin)
            if M % 7 == 3:
                num.append(a)
                Ms.append(M)
    print(Ms)
    print(num)
    
    4
  • Jump
    General Discussion Thread - Juche 113, Week 12
  • What did I do wrong? I could look up proper solution to this exercise but I would still like to know what exactly is off. I feel like its something super obvious and stupid.

    2
  • cross-posted from: https://lemmygrad.ml/post/2178431

    > What are the general trends, public's opinion on latest events, local, global, Ukraine. Is there something of note happening in your country, both good and bad?

    0
    0
    Jump
    Anticommunists make the coolest communist propaganda
  • And anyone trying to stop the suffering is eeevil~. I seriously don't know why they thought it would portray bolsheviks in a bad light.

    1
  • Jump
    Anticommunists make the coolest communist propaganda
  • Shouldn't removing Jesus from his torture device be a good thing? I could never understand the logic behind worshipping the thing that killed and subjected their god to pain.

    3
  • I am interested in learning of his policies, what he said and did, state of the left movement in Belarus as well as position of the country on the world stage and in the eyes of the non-western countries.

    4
    Jump
    trees 2.0
  • You know, this thing would have been cool as an Indoors wall thingy in malls and such, since algae doesn't need as much maintenance as houseplants and would produce more oxygen too. Placing the tank outside is a strange decision, it simply doesn't match with the streets stylistically or functionally and will require regular repairs and cleaning from damages of the elements and filth that would accumulate at extreme speeds.

    0
  • Jump
    Freeze Peach more frozen than ever
  • Lol the comments going like "what are we, a bunch of commies?" are cracking me up

    1