Top "Blackjack" questions

Card Game – Where the aim is to get your cards closer to 21 than the dealer, while not going over.

Convert an array into an ArrayList

I'm having a lot of trouble turning an array into an ArrayList in Java. This is my array right now: …

java arrays list arraylist blackjack
Deleting Last Item from Array of String

I'm working on a simple blackjack game project. Firstly I create the array of cards: string[] deck = { "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K", "…

c# arrays blackjack
initializer-string for array of chars is too long error

I am working on a BlackJack Game using C++, and I have the following piece of code within it where …

c++ blackjack
Why am I getting this error? "bad operand types for binary operator '>'"

I would like to know what it causing the error of "bad operand types for binary operator '>'" …

java blackjack
Is there an elegant way to deal with the Ace in Blackjack?

My kiddo had a homework assignment to write Blackjack in Java. I helped him a little but for the most …

java blackjack
Data Structures - Creating a Bag in Java

I am working on creating a bag of cards for a blackjack game in my CS course. This particular project …

java data-structures blackjack bag
Creating an AI for BlackJack

I am trying to make a Blackjack game! I am successful with player interaction! However, I decided to step it …

java artificial-intelligence blackjack
How to have a method pause and wait for input with Android?

Basically I have created a Blackjack app that uses several methods that get called and pass a long the information …

java android onclick buttonclick blackjack
What does spaces.Discrete mean in OpenAI Gym

I try to learn MC- Monte Carlo Method applied in blackjack using openAI Gym. And I do not understand these …

python-3.x openai-gym blackjack