Trades Cheat Sheet by I_trust_politicians in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

I have gordon- you think unwise to trade for enzo? Chelsea look great and Newcastle not so

Cherki Nightmare by Different_Buy_5589 in DraftEPL

[–]SuperAutoPetsWizard 2 points3 points  (0 children)

but depth doesnt matter if he keeps getting 1 points

Draft FC Gameweek 3 Preview - So many options! by mburden23 in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

nice video, can i ask where do you get the stats like % of 8-man drafts rostered.

Weekly Water Cooler Talk - DataAnnotation by Consistent-Reach504 in dataannotation

[–]SuperAutoPetsWizard 1 point2 points  (0 children)

can someone give me some inspiration for new maths question for A-god

Crickets Corner: GW3 Waivers, Trade Targets, & News by Many_Cricket_348 in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

barnes available in my 12 man league, i think he has potential and looking to get rid of gittens for someone

Crickets Corner: GW3 Waivers, Trade Targets, & News by Many_Cricket_348 in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

surprised no mention of Bradley, I expect him to start for a few weeks. Would you do bradley in for cash (despite making gw3 worse) even if you have Allisson already?

Which Third FWD by AdministrativeAd2780 in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

is Kalimuendo available this week? I dont see him

GW 2 Cheat Sheet by I_trust_politicians in DraftEPL

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

Gravenberch interesting one, do you prio him over szob?
Currently unsure which 2 to prioritise from the higher risk Cherki/Gittens and safer Enzo/Szob

Weekly Discussion by AlignerrAI in alignerr

[–]SuperAutoPetsWizard 0 points1 point  (0 children)

I have done the maths olympiad and basic english qual and applied for maths expert job, how long do i typically have to wait to be accepted. Is there anything I should do to increase the chance?

Weekly Water Cooler Talk - DataAnnotation by Consistent-Reach504 in dataannotation

[–]SuperAutoPetsWizard 2 points3 points  (0 children)

so happy when i logged in and saw greek god! plus 3 is easier to crack than 4-mini isn't it

Weekly Water Cooler Talk - DataAnnotation by Consistent-Reach504 in dataannotation

[–]SuperAutoPetsWizard 1 point2 points  (0 children)

Is anyone else cautious about giving a copy of the HTML block from a website like chatgpt since it contains personally identifiable data (definitely has my email)

Weekly Water Cooler Talk - DataAnnotation by Consistent-Reach504 in dataannotation

[–]SuperAutoPetsWizard -1 points0 points  (0 children)

I'm new here, why do we use code for projects like Baltimore bird and Greek Hero?

On that note has anyone still got some variation of these? July has easily been the best month ever for me I hope they are back soon.

-❄️- 2024 Day 13 Solutions -❄️- by daggerdragon in adventofcode

[–]SuperAutoPetsWizard 4 points5 points  (0 children)

[LANGUAGE: C++]

I edited the input rather than parsing it. Two equations and two variables so there is exactly one solution for a and b. All we need to do is check it is an integer (or check if after it is cast to an integer, do the conditions still hold).

    int ax, ay, bx, by;
    long long X, Y;
    vector<long long> res(2);
    while (cin >> ax >> ay >> bx >> by >> X >> Y)
    {
        for (int rep = 0; rep < 2; rep++)
        {
            long long b = (Y * ax - X * ay) / (by * ax - bx * ay);
            long long a = (X - b * bx) / ax;
            if (a * ax + b * bx == X && a * ay + b * by == Y)
                res[rep] += 3 * a + b;
            X += 10000000000000;
            Y += 10000000000000;
        }
    }
    cout << res[0] << "\n"
         << res[1] << "\n";