MCPcopy Index your code
hub / github.com/careercup/ctci / remainingCards

Method remainingCards

java/Chapter 8/Question8_1/Deck.java:28–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26 }
27
28 public int remainingCards() {
29 return cards.size() - dealtIndex;
30 }
31
32 public T[] dealHand(int number) {
33 if (remainingCards() < number) {

Callers 2

dealHandMethod · 0.95
dealCardMethod · 0.95

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected