poker

package
v0.0.0-...-427ddc2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 19, 2017 License: MIT Imports: 4 Imported by: 0

README

Poker

Pick the best hand(s) from a list of poker hands.

See wikipedia for an overview of poker hands.

Your function will receive an array of strings. Each string represents a hand composed of 5 cards separated by spaces. A card is represented by a number and its suit.

You are to return an array containing either the best hand or, in case of a tie, the best hands. Each hand should be a string in the same format as given to you initially as input.

Running the tests

To run the tests run the command go test from within the exercise directory.

If the test suite contains benchmarks, you can run these with the -bench flag:

go test -bench .

Keep in mind that each reviewer will run benchmarks on a different machine, with different specs, so the results from these benchmark tests may vary.

Further information

For more detailed information about the Go track, including how to get help if you're having trouble, please visit the exercism.io Go language page.

Source

Inspired by the training course from Udacity. https://www.udacity.com/course/viewer#!/c-cs212/

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Documentation

Index

Constants

View Source
const (
	Jack  = 11
	Queen = 12
	King  = 13
	Ace   = 14
)

Variables

This section is empty.

Functions

func BestHand

func BestHand(hands []string) ([]string, error)

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL