This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns valid-credid-card) | |
(defn- parse-int [s] | |
(Integer. (re-find #"\d+" (str s)))) | |
(defn- to-digits [n] | |
(map parse-int (str n))) | |
(def ^:private to-digits-rev | |
(comp reverse | |
(partial to-digits))) | |
(defn- double-second [coll] | |
(map-indexed | |
#(if (zero? (mod (+ %1 1) 2)) | |
(* 2 %2) | |
%2) | |
coll)) | |
(def ^:private sum-digits | |
(partial reduce #(+ %1 (reduce + (to-digits %2))))) | |
(defn is-valid? [num-credit-card] | |
(zero? | |
(mod | |
(->> | |
num-credit-card | |
to-digits-rev | |
double-second | |
sum-digits) | |
10))) |
No comments:
Post a Comment