zerodivision

joined 2 years ago
[–] zerodivision@mander.xyz 1 points 1 month ago

Alternative, die ich gestern verwendet habe, ist:

https://rss-bridge.org/bridge01/?action=display&bridge=ARDAudiothekBridge&path=https%3A%2F%2Fwww.ardaudiothek.de%2Fsendung%2Fcixin-liu-trisolaris-trilogie-sci-fi-hoerspiel-serie-wdr%2F13220399%2F&limit=&format=Html

Der atom feed-Link auf der Seite lässt sich in podcast-Playern verwenden, wo sich dann hoffentlich alle Folgen einfach downloaden lassen.

 

The Galaxy community's yearly global training event is approaching again. Sign up for the 1-week asynchronous virtual course for free if you're interested in bioinformatics and data science with Galaxy.

[–] zerodivision@mander.xyz 3 points 1 year ago* (last edited 1 year ago)

Oh oh, you're correct :( How did I not notice that; guess too much thinking about standard card games, plus no hand in the example input is a Five Of A Kind.

[–] zerodivision@mander.xyz 1 points 1 year ago* (last edited 1 year ago)

Here's a (hopefully correct) solution (in Python) where a Five Of A Kind hand is not allowed:

Code

i = open('day7_in.txt')

from collections import Counter

card_values = {
    'A': 14,
    'K': 13,
    'Q': 12,
    'J': 0,
    'T': 10
}

deques = []

for line in i:
    if not line.strip():
        continue
    cards, bid = line.split()
    cards_repr = [int(card_values.get(card, card)) for card in cards]
    counts = Counter(card for card in cards if card != 'J')
    deque_type = [times for card, times in counts.most_common(5)]

    jokers_left = cards.count('J')
    for i in range(jokers_left):
        for j, n in enumerate(deque_type):
            if n < 4:
                deque_type[j] += 1
                jokers_left -= 1
                break
    if jokers_left:
        if jokers_left <= 4:
            deque_type.append(jokers_left)
        else:
            deque_type += [4, 1]
    deques.append((deque_type, cards_repr, int(bid), cards))

deques.sort()

ans = 0
for n, d in enumerate(deques, 1):
    ans += n*d[2]

print(ans)

 

The instructions for part 2 are missing info about how to handle the Four Of A Kind and a joker case. Wasted quite some time because I assumed that the remaining joker would remain unused, but turns out it turns your deck into Five Of A Kind.

Did everybody else just expect this?

[–] zerodivision@mander.xyz 2 points 2 years ago

Just sad :(

btw here's the same post from within the fediverse: https://masto.ai/@CopernicusECMWF/111449188759713945

[–] zerodivision@mander.xyz 2 points 2 years ago

Gestern noch geschaut :-) Eine Art Avatar in realitätsnäher. Spannend und sehenswert.

 

What's your favorite so far?

[–] zerodivision@mander.xyz 1 points 2 years ago

btw, EMBL Events are now on the fediverse: @EMBLEvents@mastodon.online

 

Image

[–] zerodivision@mander.xyz 3 points 2 years ago

I've seen the posters on display in the botanical garden of the University of Freiburg and was very impressed.

 

Produced by the MAdLand consortium and made publically accessible via Zenodo. The series was presented in exhibition form in several botanical gardens across Germany this summer. Only this German version exists, unfortunately.

 

Concern about further spread of clade I of MPXV

view more: next ›