Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Murat Mermerkaya
Murat Mermerkaya
2,346 Points

How to end this challenge?

I couldn't get why this code is not working.

hands.py
from dice import D6


class Hand(list):
    def __init__(self, size=0, die_class=None, *args, **kwargs):
        if not die_class:
            raise ValueError("You must provide a die class")
        super().__init__()

        for _ in range(size):
            self.append(die_class())
        self.sort()

    def _by_value(self, value):
        dice = []
        for die in self:
            if die == value:
                dice.append(die)
        return dice


class CapitalismHand(Hand):
    def __init__(self):
        super().__init__(size = 2, die_class = D6)


    @property
    def ones(self):
        return self._by_value(1)

    @property
    def twos(self):
        return self._by_value(2)

    @property
    def threes(self):
        return self._by_value(3)

    @property
    def fours(self):
        return self._by_value(4)

    @property
    def fives(self):
        return self._by_value(5)

    @property
    def sixes(self):
        return self._by_value(6)

    @property
    def _sets(self):
        return {
            1: len(self.ones),
            2: len(self.twos),
            3: len(self.threes),
            4: len(self.fours),
            5: len(self.fives),
            6: len(self.sixes)
        }

    @property
    def doubles(self):
        for worth, count in self._sets.items():
            if count == 2:
                reroll()

    @classmethod
    def reroll(cls):
        return cls()       

2 Answers

Answer deleted by Treehouse Moderator

"Giving" away the correct code is frowned upon in the Community, as it does not foster any type of learning. Code that is not accompanied by a detailed explanation of why it is correct and / or what the Student asking the question did wrong will be deleted by Moderators.

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

In adding code for Task 2, you have apparently modified the doubles method. This is not necessary. The challenge mentions wanting to reroll in the the case of getting doubles, but it doesn't want the code to explicitly call reroll when doubles are detected by the doubles method. Return your previously passing doubles code should solve the challenge.

Post back if you need more help. Good Luck!!