设计一套扑克牌

约束和假设

  • 这是一幅用于类似扑克和二十一点等游戏的通用扑克牌吗?
  • 我们可以假设这副牌有52张(2-10,杰克,女王,国王,埃斯)和4种花色吗?
  • 我们可以假设输入是有效的,还是需要对其进行验证?

编码实现

python 复制代码
from abc import ABCMeta, abstractmethod
from enum import Enum
import sys

class Suit(Enum):
	HEART = 0
	DIAMOND = 1
	CLUBS = 2
	SPADE = 3

class Card(metaclass=ABCMeta):
	
	def __init__(self, value, suit):
		self.value = value
		self.suit = suit
		self.is_available = true

	@property
	@abstractmethod
	def value(self):
		pass

	@value.setter
	@abstractmethod
	def value(self, other):
		pass

class BlackJackCard(Card):
	
	def __init__(self, value, suit):
		super(BlackJackCard, self).__init__(value, suit)

	def is_ace(self):
		'''Jack =11, Queen = 12, King = 13'''
		return 10 < self._value <= 13

	@preoperty
	def value(self):
		if self.is_ace() == 1:
			return 1
		elif self.is_face_card():
			return 10
		else:
			return self._value

	@value.setter
	def value(self, new_value):
		if 1 <= new_value <= 13:
			self._value = new_value
		else:
			raise ValueError('Invalid card value: {}'.format(new_value))

class Hand(object):
	def __init__(self, cards):
		self.cards = cards
	
	def add_card(self, card):
		self.cards.append(card)

	def score(self):
		total_value = 0
		for card in self.cards:
			total_value += card.value
		return total_value

class BlackJackHand(Hand):
	BLACKJACK = 21
	
	def __init__(self, cards):
		min_over = sys.MAXSIZE
		max_under = -sys.MAXSIZE
		for score in self.possible_scores():
			if self.BLACKJACK < score < min_over:
				min_over = score
			elif max_under < score <= self.BLACKJACK:
				max_under = score
		return max_under if max_under != -sys.MAXSIZE else min_over

	def possible_scores(self):
		'''Return a list of possible scores, taking aces into account'''

class Deck(oject):
	
	def __init__(self,card):
		self.cards = cards
		self.deal_index = 0

	def remaining_cards(self):
		return len(self.cards) - deal_index

	def deal_card():
		try:
			card = self.card[self.deal_index]
			card.is_available = False
			self.deal_index += 1
		except IndexError:
			return None
		return card

	def shuffle(self): #...
相关推荐
从零开始的代码生活_14 分钟前
C++ stack、queue 与 priority_queue:容器适配器原理与实战
开发语言·c++·后端·学习·算法
晚笙coding16 分钟前
LeetCode 226. 翻转二叉树(Invert Binary Tree)
算法·leetcode·职场和发展
铅笔侠_小龙虾21 分钟前
Rust 学习(6)-所有权规则、移动语义、Clone 与 Copy
python·学习·rust
码云骑士30 分钟前
65-AI-Agent基础原理-AutoGPT-四大架构全景解读
人工智能·python·架构
2zcode39 分钟前
项目文档:基于MATLAB低采样率ISAR成像的快速稀疏重建算法研究
开发语言·算法·matlab
Ulyanov1 小时前
刚体动力学方程——牛顿-欧拉与陀螺效应的奥秘
开发语言·python·目标跟踪·雷达电子对抗·导引头
哈里沃克1 小时前
编译与链接 - 02
算法
巴糖1 小时前
Embedding了解一些
算法
观察员1 小时前
用 Streamlit + 智谱 AI 打造虚拟伴侣聊天机器人
python
战族狼魂1 小时前
广东备案大模型超百款
人工智能·算法·大模型·大语言模型