Sha256: ca447ebf6eab8f4714244fd264dca6dedbdc1c0c7a889748da1b6265a08dde6a
Contents?: true
Size: 384 Bytes
Versions: 63
Compression:
Stored size: 384 Bytes
Contents
/// Given a list of poker hands, return a list of those hands which win. /// /// Note the type signature: this function should return _the same_ reference to /// the winning hand(s) as were passed in, not reconstructed strings which happen to be equal. pub fn winning_hands<'a>(hands: &[&'a str]) -> Option<Vec<&'a str>> { unimplemented!("Out of {:?}, which hand wins?", hands) }
Version data entries
63 entries across 63 versions & 1 rubygems