package com.jadekler.sheri; /** * Write some code that will evaluate a poker hand and determine its * rank. * Example: * Hand: Ah As 10c 7d 6s (Pair of Aces) * Hand: Kh Kc 3s 3h 2d (2 Pair) * Hand: Kh Qh 6h 2h 9h (Flush) * * WONTADD: I am aggressively awful at poker */ public class PokerRank { public static void main( String[] args ) { System.out.println( "Hello World!" ); } public boolean test() { return true; } }