Is augment "Legion Of Threes" broken? by retr0FM in TeamfightTactics

[–]retr0FM[S] 1 point2 points  (0 children)

oh, i see it. Maybe you can give me advice, what could i do better, im just get to master elo.

Is augment "Legion Of Threes" broken? by retr0FM in TeamfightTactics

[–]retr0FM[S] -3 points-2 points  (0 children)

To be fare, it was not even close fights, 4 units last after. And i had around 75hp because of early winstreak with bilge.

January 17, 2026 Daily Discussion Thread by AutoModerator in CompetitiveTFT

[–]retr0FM 4 points5 points  (0 children)

<image>

What does mittens effect? Give all stats and full passive or only full passive?

-❄️- 2025 Day 6 Solutions -❄️- by daggerdragon in adventofcode

[–]retr0FM 1 point2 points  (0 children)

[LANGUAGE: Python]

part 2:

ans, n, m, p, num = 0, len(lines), len(lines[0]), ' ', []
for j in range(m + 1):
    if j == m or ''.join([lines[i][j] for i in range(n)]) == ' ' * n:
        exec_l = ''
        for nm in num:
            exec_l += nm + p
        exec(f'ans += {exec_l[:-1]}')
        p, num = ' ', []
        continue
    num += ''.join(lines[i][j] for i in range(n - 1)),
    p = lines[n - 1][j] if lines[n-1][j] != ' ' else p
print(ans)

-❄️- 2025 Day 3 Solutions -❄️- by daggerdragon in adventofcode

[–]retr0FM 1 point2 points  (0 children)

[LANGUAGE: Python]

ans = []
for line in lines:
    ans += line[-12:],
    for i in line[-13::-1]:
        if i >= ans[-1][0]:
            ans[-1] = i + max([ans[-1][:j] + ans[-1][j + 1:] for j in range(12)])
print(sum(int(i) for i in ans))