Created
September 15, 2018 21:16
-
-
Save shirok/b8c577c6c1c5ade02ff91f11dafdb5f2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(define (f x m) (modulo (+ (expt 25 x) (* -3 (expt 5 x)) -10) m)) | |
(define (show m) (dotimes [x m] (let1 F (f x m) (print `(f ,x ,m) '= F (if (zero? F) " ****" ""))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment