Skip to content

Instantly share code, notes, and snippets.

@shirok
Created September 15, 2018 21:16
Show Gist options
  • Save shirok/b8c577c6c1c5ade02ff91f11dafdb5f2 to your computer and use it in GitHub Desktop.
Save shirok/b8c577c6c1c5ade02ff91f11dafdb5f2 to your computer and use it in GitHub Desktop.
(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