Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

done #1033

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

done #1033

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: clojure
lein: lein2
script: lein2 midje :config .midje-grading-config.clj
lein: lein
script: lein midje :config .midje-grading-config.clj
jdk:
- openjdk7
notifications:
Expand Down
54 changes: 43 additions & 11 deletions src/p_p_p_pokerface.clj
Original file line number Diff line number Diff line change
@@ -1,34 +1,66 @@
(ns p-p-p-pokerface)

(defn rank [card]
nil)
(def replacements {\T 10, \J 11, \Q 12, \K 13, \A 14})
(let [[rank _] card]
(if (Character/isDigit rank)
(Integer/valueOf (str rank))
(replacements rank))))

(defn suit [card]
nil)
(let [[_ suit] card]
(str suit)))

(defn ranks-of-hand [hand]
(map rank hand))

(defn multiple-same-ranks? [hand how-many]
(contains? (set (vals (frequencies (ranks-of-hand hand)))) how-many))

(defn high-card? [hand]
true)

(defn pair? [hand]
nil)
(multiple-same-ranks? hand 2))

(defn three-of-a-kind? [hand]
nil)
(multiple-same-ranks? hand 3))

(defn four-of-a-kind? [hand]
nil)
(multiple-same-ranks? hand 4))

(defn flush? [hand]
nil)
(let [suits (map suit hand)]
(= (vals (frequencies suits)) (seq [5]))))

(defn full-house? [hand]
nil)
(and (pair? hand) (three-of-a-kind? hand)))

(defn two-pairs? [hand]
nil)
(or (four-of-a-kind? hand)
(= (sort (vals (frequencies (ranks-of-hand hand)))) (seq [1 2 2]))))

(defn straight-with-ace? [ranks]
(or
(= (sort ranks) (seq [10 11 12 13 14]))
(= (sort (replace {14 1} ranks)) (seq [1 2 3 4 5]))))

(defn straight? [hand]
nil)
(let [ranks (ranks-of-hand hand)
smallest (apply min ranks)
biggest (apply max ranks)]
(if (== biggest 14)
(straight-with-ace? ranks)
(= (sort ranks) (range smallest (+ biggest 1))))))

(defn straight-flush? [hand]
nil)
(and (flush? hand) (straight? hand)))

(defn value [hand]
nil)
(let [checkers #{[high-card? 0] [pair? 1]
[two-pairs? 2] [three-of-a-kind? 3]
[straight? 4] [flush? 5]
[full-house? 6] [four-of-a-kind? 7]
[straight-flush? 8]}
hands-values (filter (fn [[value-of-hand _]] (value-of-hand hand)) checkers)]
(apply max (map second hands-values))))