迭代扑克牌数组并验证花色

发布于 2024-11-03 20:23:26 字数 322 浏览 1 评论 0原文

我正在使用一个看起来像这样的数组:

cards = [#<Cardshark::Card:0x9200cc @rank=:ace, @suit=:coins>, etc]

4 种套装(硬币、剑、杯子、俱乐部)中的每一种都包含从 7 到 7 的等级 A 和 3 张人头牌,每个“牌组”总共有 40 张牌,

我想写一个rspec 测试以验证数组包含 4 个花色。我开始沿着使用 @cards.select 与使用正则表达式的块一起使用的道路,但很快就变得丑陋了。

处理这个问题的最佳方法是什么?

I'm working with an array that looks like this:

cards = [#<Cardshark::Card:0x9200cc @rank=:ace, @suit=:coins>, etc]

Each of 4 suits (coins, swords, cups, clubs) contains ranks ace through seven and 3 face cards for a total of 40 cards per "deck"

I am looking to write an rspec test to verify that the array contains 4 suits. I started going down the path of using @cards.select with a block using regular expressions and that got ugly pretty fast.

What's the best way to handle this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薔薇婲 2024-11-10 20:23:26

尝试使用 Enumerable#group_by:

num_suits = cards.group_by { |card| card.suit }.length

在 IRB 中:

~$ irb
>> groups = (1..10).group_by { |n| n % 4 }
=> {0=>[4, 8], 1=>[1, 5, 9], 2=>[2, 6, 10], 3=>[3, 7]}
>> groups.length
=> 4

Try using Enumerable#group_by:

num_suits = cards.group_by { |card| card.suit }.length

In IRB:

~$ irb
>> groups = (1..10).group_by { |n| n % 4 }
=> {0=>[4, 8], 1=>[1, 5, 9], 2=>[2, 6, 10], 3=>[3, 7]}
>> groups.length
=> 4
生寂 2024-11-10 20:23:26
describe Cardshark, "@cards" do
  it "should contain four suits" do
    suits = @cards.map { |card| card.suit }.uniq
    suits.size.should be 4
  end
end
describe Cardshark, "@cards" do
  it "should contain four suits" do
    suits = @cards.map { |card| card.suit }.uniq
    suits.size.should be 4
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文