Solved armstrong-numbers in Bash

This commit is contained in:
2023-04-25 19:32:35 +02:00
parent 0a54d06454
commit af54b17140
7 changed files with 899 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"authors": [
"sjwarner-bp"
],
"contributors": [
"bkhl",
"budmc29",
"glennj",
"guygastineau",
"IsaacG",
"kotp",
"Smarticles101",
"ZapAnton"
],
"files": {
"solution": [
"armstrong_numbers.sh"
],
"test": [
"armstrong_numbers.bats"
],
"example": [
".meta/example.sh"
]
},
"blurb": "Determine if a number is an Armstrong number.",
"source": "Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Narcissistic_number"
}