luhn
This commit is contained in:
parent
d18bc9dae6
commit
edb9158b39
7 changed files with 391 additions and 0 deletions
41
rust/luhn/.exercism/config.json
Normal file
41
rust/luhn/.exercism/config.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"authors": [
|
||||
"IanWhitney"
|
||||
],
|
||||
"contributors": [
|
||||
"AvasDream",
|
||||
"bitfield",
|
||||
"coriolinus",
|
||||
"cwhakes",
|
||||
"efx",
|
||||
"ErikSchierboom",
|
||||
"gibfahn",
|
||||
"idealhack",
|
||||
"lutostag",
|
||||
"mkantor",
|
||||
"navossoc",
|
||||
"nfiles",
|
||||
"petertseng",
|
||||
"rofrol",
|
||||
"stkent",
|
||||
"stringparser",
|
||||
"workingjubilee",
|
||||
"xakon",
|
||||
"ZapAnton"
|
||||
],
|
||||
"files": {
|
||||
"solution": [
|
||||
"src/lib.rs",
|
||||
"Cargo.toml"
|
||||
],
|
||||
"test": [
|
||||
"tests/luhn.rs"
|
||||
],
|
||||
"example": [
|
||||
".meta/example.rs"
|
||||
]
|
||||
},
|
||||
"blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
|
||||
"source": "The Luhn Algorithm on Wikipedia",
|
||||
"source_url": "https://en.wikipedia.org/wiki/Luhn_algorithm"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue