exercism/elixir/binary-search/.exercism/config.json

32 lines
579 B
JSON
Raw Normal View History

2024-07-01 16:38:21 +00:00
{
"authors": [
"bernardoamc"
],
"contributors": [
"angelikatyborska",
"Cohen-Carlisle",
"devonestes",
"lpil",
"martinsvalin",
"neenjaw",
"parkerl",
"screamingjungle",
"sotojuan",
"waiting-for-dev"
],
"files": {
"solution": [
"lib/binary_search.ex"
],
"test": [
"test/binary_search_test.exs"
],
"example": [
".meta/example.ex"
]
},
"blurb": "Implement a binary search algorithm.",
"source": "Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Binary_search_algorithm"
}