File tree Expand file tree Collapse file tree
exercises/practice/perfect-numbers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ description = "Abundant numbers -> Medium abundant number is classified correctl
2727[ec7792e6-8786-449c-b005-ce6dd89a772b ]
2828description = " Abundant numbers -> Large abundant number is classified correctly"
2929
30+ [05f15b93-849c-45e9-9c7d-1ea131ef7d10 ]
31+ description = " Abundant numbers -> Perfect square abundant number is classified correctly"
32+
3033[e610fdc7-2b6e-43c3-a51c-b70fb37413ba ]
3134description = " Deficient numbers -> Smallest prime deficient number is classified correctly"
3235
Original file line number Diff line number Diff line change 99.data
1010
1111# number of test cases
12- n: .word 13
12+ n: .word 14
1313# input values (word sized ints)
1414ins: .word
1515 6,
@@ -18,6 +18,7 @@ ins: .word
1818 12,
1919 30,
2020 33550335,
21+ 196,
2122 2,
2223 4,
2324 32,
@@ -33,6 +34,7 @@ outs: .word
3334 2, # abundant,
3435 2, # abundant,
3536 2, # abundant,
37+ 2, # abundant,
3638 3, # deficient,
3739 3, # deficient,
3840 3, # deficient,
You can’t perform that action at this time.
0 commit comments