armstrong numbers

This commit is contained in:
Rorik Star Platinum 2025-12-08 21:57:48 +03:00
parent edb9158b39
commit fb03ef20e4
7 changed files with 240 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{
"authors": [
"shingtaklam1324"
],
"contributors": [
"AndrewKvalheim",
"coriolinus",
"cwhakes",
"eddyp",
"efx",
"ErikSchierboom",
"lutostag",
"ocstl",
"petertseng",
"rofrol",
"sputnick1124",
"stringparser",
"xakon",
"ZapAnton"
],
"files": {
"solution": [
"src/lib.rs",
"Cargo.toml"
],
"test": [
"tests/armstrong_numbers.rs"
],
"example": [
".meta/example.rs"
]
},
"blurb": "Determine if a number is an Armstrong number.",
"source": "Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Narcissistic_number"
}