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

Sync armstrong-number tests #353

Merged
merged 2 commits into from
Apr 24, 2024
Merged
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
38 changes: 26 additions & 12 deletions exercises/practice/armstrong-numbers/armstrong-numbers-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,44 +7,58 @@
(load-file "armstrong-numbers.el")
(declare-function armstrong-p "armstrong-numbers.el" (n))

(ert-deftest armstrong-number-0 ()
"Zero is an Armstrong number"
(should (armstrong-p 0)))

(ert-deftest armstrong-number-5 ()
"Single digit numbers are Armstrong numbers"
"Single-digit numbers are Armstrong numbers"
(should (armstrong-p 5)))


(ert-deftest not-armstrong-number-10 ()
"There are no 2 digit Armstrong numbers"
(should (not (armstrong-p 10))))
"There are no two-digit Armstrong numbers"
(should-not (armstrong-p 10)))


(ert-deftest armstrong-number-153 ()
"Three digit number that should an Armstrong number"
"Three-digit number that is an Armstrong number"
(should (armstrong-p 153)))


(ert-deftest not-armstrong-number-100 ()
"Three digit number that should an Armstrong number"
(should (not (armstrong-p 100))))
"Three-digit number that is not an Armstrong number"
(should-not (armstrong-p 100)))


(ert-deftest armstrong-number-9474 ()
"Four digit number that should an Armstrong number"
"Four-digit number that is an Armstrong number"
(should (armstrong-p 9474)))


(ert-deftest not-armstrong-number-9475 ()
"Four digit number that should not an Armstrong number"
(should (not (armstrong-p 9476))))
"Four-digit number that is not an Armstrong number"
(should-not (armstrong-p 9476)))


(ert-deftest armstrong-number-9926315 ()
"Seven digit number that should an Armstrong number"
"Seven-digit number that is an Armstrong number"
(should (armstrong-p 9926315)))


(ert-deftest not-armstrong-number-9926314 ()
"Seven digit number that should not an Armstrong number"
(should (not (armstrong-p 9926314))))
"Seven-digit number that is not an Armstrong number"
(should-not (armstrong-p 9926314)))


(ert-deftest armstrong-number-186709961001538790100634132976990 ()
"Armstrong number containing seven zeroes that should be an Armstrong number"
(should (armstrong-p 186709961001538790100634132976990)))


(ert-deftest armstrong-number-115132219018763992565095597973971522401 ()
"The largest and last Armstrong number should be an Armstrong number"
(should (armstrong-p 115132219018763992565095597973971522401)))

(provide 'armstrong-numbers-test)
;;; armstrong-numbers-test.el ends here
7 changes: 5 additions & 2 deletions exercises/practice/armstrong-numbers/armstrong-numbers.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

;;; Commentary:

(defun armstrong-p (n)
;;; Code:
)


(defun armstrong-p (n)
(error "Delete this S-Expression and write your own implementation"))


(provide 'armstrong-numbers)
;;; armstrong-numbers.el ends here