Advertisement
bojandam1

Untitled

Mar 24th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.67 KB | None | 0 0
  1. (defn printer [x] (do (println x) x))
  2.  
  3.  
  4. (defn suit [card] (str (first (rest card))))
  5.  
  6. (defn rank [card] (cond
  7. (Character/isDigit (first card)) (Integer/valueOf (str(first card)))
  8. (= (first card) \T) 10
  9. (= (first card) \J) 11
  10. (= (first card) \Q) 12
  11. (= (first card) \K) 13
  12. (= (first card) \A) 14
  13. )
  14. )
  15.  
  16. ;(defn pair? [hand] (= (count hand) (+ 1 (count (set (map rank hand))))) )
  17. (defn n-duplicates [hand] (frequencies (vals (frequencies (map rank hand)))) )
  18. (defn pair? [hand] (= (n-duplicates hand) {2 1, 1 3} ) )
  19. (defn three-of-a-kind? [hand] (= (n-duplicates hand) {3 1, 1 2} ) )
  20. (defn four-of-a-kind? [hand] (= (n-duplicates hand) {4 1, 1 1} ) )
  21. (defn full-house? [hand] (= (n-duplicates hand) {3 1, 2 1} ) )
  22. (defn two-pairs? [hand] (= (n-duplicates hand) {2 2, 1 1} ) )
  23.  
  24.  
  25. ;Pomoshni funkcii za flush i straight
  26. (defn swap-ace [ranks] (map (fn [x] (if (= x 14) 1 x)) ranks))
  27. (defn pom-flush [hand] (= 1 (count (set (map suit hand)))))
  28. (defn straighten [ranks] (map (fn [x] (- x (first ranks))) ranks))
  29. (defn pom-straight [hand] (or
  30. (= (straighten (sort (map rank hand))) '(0 1 2 3 4) )
  31. (= (straighten (sort (swap-ace (map rank hand)))) '(0 1 2 3 4) )
  32. ) )
  33.  
  34.  
  35. (defn flush? [hand] (and (pom-flush hand) (not (pom-straight hand)) ))
  36. (defn straight? [hand] (and (not (pom-flush hand)) (pom-straight hand) ))
  37. (defn straight-flush? [hand] (and (pom-flush hand) (pom-straight hand) ))
  38.  
  39. (defn value [hand] (cond
  40. (straight-flush? hand) 8
  41. (four-of-a-kind? hand) 7
  42. (full-house? hand) 6
  43. (flush? hand) 5
  44. (straight? hand) 4
  45. (three-of-a-kind? hand) 3
  46. (two-pairs? hand) 2
  47. (pair? hand) 1
  48. :else 0
  49. )
  50. )
  51.  
  52. (defn low-ace [hand] ; converts Low Ace to 1
  53. (if
  54. (= (straighten (sort (swap-ace (map rank hand)) )) '(0 1 2 3 4) ) (swap-ace (map rank hand))
  55. (map rank hand)
  56. )
  57. )
  58.  
  59. (defn kickers [hand] (keys (into (sorted-map-by (fn [key1 key2]
  60. (if
  61. (=
  62. (get (frequencies (low-ace hand) ) key2)
  63. (get (frequencies (low-ace hand) ) key1)
  64. )
  65. (< key2 key1)
  66. (< (get (frequencies (low-ace hand) ) key2)
  67. (get (frequencies (low-ace hand) ) key1))
  68. )
  69. ))
  70. (frequencies (low-ace hand) )))
  71. )
  72.  
  73. (defn higher-kicker? [k1 k2]
  74. (cond
  75. (empty? k1) nil
  76. (empty? k2) true
  77. (> (first k1) (first k2)) true
  78. (< (first k1) (first k2)) nil
  79. :else (higher-kicker? (rest k1) (rest k2))
  80. )
  81. )
  82. (defn beats? [h1 h2]
  83. (cond (> (value h1) (value h2) ) true
  84. (= (value h1) (value h2)) (higher-kicker? (kickers h1) (kickers h2) )
  85. :else nil
  86. )
  87. )
  88. (defn modify [Lis] (if (= 1 (count Lis)) (first Lis) Lis ) )
  89.  
  90. (defn winning-hand [& hands]
  91. (if (empty? hands) nil
  92. (modify (reduce (fn [h1 h2]
  93. (cond (beats? (first h1) (first h2)) h1
  94. (beats? (first h2) (first h1)) h2
  95. :else (concat h1 h2)
  96. )) (map (fn [x] (list x)) hands) ) )
  97. )
  98. )
  99.  
  100.  
  101.  
  102. (def high-seven ["2H" "3S" "4C" "5C" "7D"])
  103. (def pair-hand ["2H" "2S" "4C" "5C" "7D"])
  104. (def two-pairs-hand ["2H" "2S" "4C" "4D" "7D"])
  105. (def three-of-a-kind-hand ["2H" "2S" "2C" "4D" "7D"])
  106. (def four-of-a-kind-hand ["2H" "2S" "2C" "2D" "7D"])
  107. (def straight-hand ["2H" "3S" "6C" "5D" "4D"])
  108. (def low-ace-straight-hand ["2H" "3S" "4C" "5D" "AD"])
  109. (def high-ace-straight-hand ["TH" "AS" "QC" "KD" "JD"])
  110. (def flush-hand ["2H" "4H" "5H" "9H" "7H"])
  111. (def full-house-hand ["2H" "5D" "2D" "2C" "5S"])
  112. (def straight-flush-hand ["2H" "3H" "6H" "5H" "4H"])
  113. (def low-ace-straight-flush-hand ["2D" "3D" "4D" "5D" "AD"])
  114. (def high-ace-straight-flush-hand ["TS" "AS" "QS" "KS" "JS"])
  115.  
  116. (winning-hand pair-hand high-seven pair-hand)
  117.  
  118.  
  119.  
  120. (ns user(:use clojure.test))
  121.  
  122. (deftest t-suit
  123. (is (= "H" (suit "2H")))
  124. (is (= "D" (suit "TD")))
  125. (is (= "C" (suit "QC")))
  126. (is (= "S" (suit "JS")))
  127. )
  128. (deftest t-rank
  129. (is (= 2 (rank "2H")))
  130. (is (= 10 (rank "TD")))
  131. (is (= 12 (rank "QC")))
  132. (is (= 11 (rank "JS")))
  133. )
  134. (deftest t-pair?
  135. (is (not (pair? ["2H" "5D" "3C" "QS" "4D"])))
  136. (is (pair? ["2H" "2D" "JC" "QS" "4D"]))
  137. (is (not (pair? ["2H" "2D" "2C" "QS" "4D"])))
  138. (is (not (pair? ["2H" "2D" "2C" "2S" "4D"])))
  139. (is (not (pair? ["2H" "2D" "3C" "3S" "4D"])))
  140. (is (not (pair? ["2H" "2D" "3C" "3S" "3D"])))
  141. )
  142. (deftest t-three?
  143. (is (not (three-of-a-kind? ["2H" "5D" "3C" "QS" "4D"])))
  144. (is (not (three-of-a-kind? ["2H" "2D" "JC" "QS" "4D"])))
  145. (is (three-of-a-kind? ["2H" "2D" "2C" "QS" "4D"]))
  146. (is (not (three-of-a-kind? ["2H" "2D" "2C" "2S" "4D"])))
  147. (is (not (three-of-a-kind? ["2H" "2D" "3C" "3S" "4D"])))
  148. (is (not (three-of-a-kind? ["2H" "2D" "3C" "3S" "3D"])))
  149. )
  150. (deftest t-four?
  151. (is (not (four-of-a-kind? ["2H" "5D" "3C" "QS" "4D"])))
  152. (is (not (four-of-a-kind? ["2H" "2D" "JC" "QS" "4D"])))
  153. (is (not (four-of-a-kind? ["2H" "2D" "2C" "QS" "4D"])))
  154. (is (four-of-a-kind? ["2H" "2D" "2C" "2S" "4D"]))
  155. (is (not (four-of-a-kind? ["2H" "2D" "3C" "3S" "4D"])))
  156. (is (not (four-of-a-kind? ["2H" "2D" "3C" "3S" "3D"])))
  157. )
  158. (deftest t-house?
  159. (is (not (full-house? ["2H" "5D" "3C" "QS" "4D"])))
  160. (is (not (full-house? ["2H" "2D" "JC" "QS" "4D"])))
  161. (is (not (full-house? ["2H" "2D" "2C" "QS" "4D"])))
  162. (is (not (full-house? ["2H" "2D" "2C" "2S" "4D"])))
  163. (is (not (full-house? ["2H" "2D" "3C" "3S" "4D"])))
  164. (is (full-house? ["2H" "2D" "3C" "3S" "3D"]))
  165. )
  166. (deftest t-two-pairs?
  167. (is (not (two-pairs? ["2H" "5D" "3C" "QS" "4D"])))
  168. (is (not (two-pairs? ["2H" "2D" "JC" "QS" "4D"])))
  169. (is (not (two-pairs? ["2H" "2D" "2C" "QS" "4D"])))
  170. (is (not (two-pairs? ["2H" "2D" "2C" "2S" "4D"])))
  171. (is (two-pairs? ["2H" "2D" "3C" "3S" "4D"]))
  172. (is (not (two-pairs? ["2H" "2D" "3C" "3S" "3D"])))
  173. )
  174. (deftest t-flush?
  175. (is (flush? ["2H" "2H" "2H" "2H" "4H"]))
  176. (is (not (flush? ["2H" "3H" "4H" "5H" "6H"])))
  177. (is (not (flush? ["2H" "2D" "3C" "3S" "3D"])))
  178. )
  179. (deftest t-straight?
  180. (is (straight? ["2D" "3H" "4H" "5H" "AH"]))
  181. (is (not (straight? ["2H" "3H" "4H" "5H" "6H"])))
  182. (is (straight? ["AH" "TD" "JC" "QS" "KD"]))
  183. (is (straight? ["2D" "3H" "4H" "5H" "6H"]))
  184. (is (not (straight? ["2H" "3H" "4H" "7H" "TD"])))
  185. )
  186. (deftest t-straight-flush?
  187. (is (straight-flush? ["2H" "3H" "4H" "5H" "6H"]))
  188. (is (not (straight-flush? ["AH" "3H" "4H" "5H" "6H"])))
  189. (is (not (straight-flush? ["2D" "3H" "4H" "5H" "AH"])))
  190. (is (not (straight-flush? ["2H" "5D" "3C" "QS" "4D"])))
  191. )
  192. (deftest t-kickers
  193. (is (= (kickers ["2H" "3S" "4C" "5D" "6D"]) '(6 5 4 3 2)))
  194. (is (= (kickers ["5H" "AS" "5C" "7D" "AD"]) '(14 5 7)))
  195. )
  196. (deftest t-higher-kicker
  197. (is (= nil (higher-kicker? (kickers ["2H" "3S" "4C" "5D" "6D"]) (kickers ["5H" "AS" "5C" "7D" "AD"]) )))
  198. (is (= true (higher-kicker? (kickers ["5H" "AS" "5C" "7D" "AD"]) (kickers ["2H" "3S" "4C" "5D" "6D"]))))
  199. )
  200.  
  201. (run-tests)
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement