Skip to content

🤖 Add authors and contributors to Practice Exercises #1055

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion exercises/practice/accumulate/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Implement the `accumulate` operation, which, given a collection and an operation to perform on each element of the collection, returns a new collection containing the result of applying that operation to each element of the input collection.",
"authors": [],
"authors": ["matthewmorgan"],
"contributors": [
"andreasolund",
"ankorGH",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"paparomeo",
"PSalant726",
"rchavarria",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["accumulate.js"],
"test": ["accumulate.spec.js"],
Expand Down
19 changes: 18 additions & 1 deletion exercises/practice/acronym/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
{
"blurb": "Convert a long phrase to its acronym",
"authors": [],
"authors": ["matthewmorgan"],
"contributors": [
"andreasolund",
"ankorGH",
"cmccandless",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"paparomeo",
"PSalant726",
"rchavarria",
"ryanplusplus",
"serixscorpio",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["acronym.js"],
"test": ["acronym.spec.js"],
Expand Down
3 changes: 2 additions & 1 deletion exercises/practice/affine-cipher/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
"authors": [],
"authors": ["TomPradat"],
"contributors": ["SleeplessByte"],
"files": {
"solution": ["affine-cipher.js"],
"test": ["affine-cipher.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/all-your-base/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
"authors": [],
"authors": ["javaeeeee"],
"contributors": [
"ankorGH",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"OrthoDex",
"paparomeo",
"PSalant726",
"rchavarria",
"serixscorpio",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["all-your-base.js"],
"test": ["all-your-base.spec.js"],
Expand Down
20 changes: 19 additions & 1 deletion exercises/practice/allergies/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"andreasolund",
"ankorGH",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"ovidiu141",
"paparomeo",
"PSalant726",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"thanhcng",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["allergies.js"],
"test": ["allergies.spec.js"],
Expand Down
16 changes: 15 additions & 1 deletion exercises/practice/alphametics/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{
"blurb": "Write a function to solve alphametics puzzles.",
"authors": [],
"authors": ["matthewmorgan"],
"contributors": [
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"paparomeo",
"PSalant726",
"rchavarria",
"slaymance",
"SleeplessByte",
"tejasbubane",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["alphametics.js"],
"test": ["alphametics.spec.js"],
Expand Down
22 changes: 21 additions & 1 deletion exercises/practice/anagram/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
{
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"amscotti",
"andreasolund",
"ankorGH",
"draalger",
"G-Rath",
"gabriel376",
"gargrave",
"iagocavalcante",
"kytrinyx",
"lantran",
"matthewmorgan",
"ovidiu141",
"paparomeo",
"PSalant726",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["anagram.js"],
"test": ["anagram.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/armstrong-numbers/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Determine if a number is an Armstrong number",
"authors": [],
"authors": ["PakkuDon"],
"contributors": [
"ankorGH",
"G-Rath",
"gargrave",
"hayashi-ay",
"iagocavalcante",
"matthewmorgan",
"ovidiu141",
"paparomeo",
"PSalant726",
"rpottsoh",
"SleeplessByte",
"tejasbubane",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["armstrong-numbers.js"],
"test": ["armstrong-numbers.spec.js"],
Expand Down
19 changes: 18 additions & 1 deletion exercises/practice/atbash-cipher/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
{
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
"authors": [],
"authors": ["matthewmorgan"],
"contributors": [
"andreasolund",
"Futuro212",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"ovidiu141",
"paparomeo",
"PSalant726",
"rchavarria",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["atbash-cipher.js"],
"test": ["atbash-cipher.spec.js"],
Expand Down
3 changes: 2 additions & 1 deletion exercises/practice/bank-account/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"blurb": "Simulate a bank account supporting opening/closing, withdraws, and deposits of money. Watch out for concurrent transactions!",
"authors": [],
"authors": ["TomPradat"],
"contributors": ["SleeplessByte"],
"files": {
"solution": ["bank-account.js"],
"test": ["bank-account.spec.js"],
Expand Down
22 changes: 21 additions & 1 deletion exercises/practice/beer-song/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
{
"blurb": "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"andreasolund",
"ankorGH",
"draalger",
"Futuro212",
"G-Rath",
"gargrave",
"hayashi-ay",
"iagocavalcante",
"kytrinyx",
"lantran",
"matthewmorgan",
"ovidiu141",
"paparomeo",
"PSalant726",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["beer-song.js"],
"test": ["beer-song.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/binary-search-tree/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Insert and search for numbers in a binary tree.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"andreasolund",
"ankorGH",
"Futuro212",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"paparomeo",
"PSalant726",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["binary-search-tree.js"],
"test": ["binary-search-tree.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/binary-search/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Implement a binary search algorithm.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"andreasolund",
"Futuro212",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"ovidiu141",
"paparomeo",
"PSalant726",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["binary-search.js"],
"test": ["binary-search.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/binary/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles",
"authors": [],
"authors": ["matthewmorgan"],
"contributors": [
"andreasolund",
"ankorGH",
"Futuro212",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"paparomeo",
"PSalant726",
"rchavarria",
"ryanplusplus",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["binary.js"],
"test": ["binary.spec.js"],
Expand Down
26 changes: 25 additions & 1 deletion exercises/practice/bob/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
{
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
"authors": [],
"authors": ["rchavarria"],
"contributors": [
"105ron",
"amscotti",
"andreasolund",
"austinratcliff",
"brendan-c",
"draalger",
"G-Rath",
"gargrave",
"hayashi-ay",
"iagocavalcante",
"kytrinyx",
"lantran",
"matthewmorgan",
"paparomeo",
"PSalant726",
"ryanplusplus",
"serixscorpio",
"SleeplessByte",
"tejasbubane",
"tikaro",
"Tyresius92",
"xarxziux"
],
"files": {
"solution": ["bob.js"],
"test": ["bob.spec.js"],
Expand Down
15 changes: 14 additions & 1 deletion exercises/practice/bowling/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"blurb": "Score a bowling game",
"authors": [],
"authors": ["trvrfrd"],
"contributors": [
"danielj-jordan",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"paparomeo",
"PSalant726",
"SleeplessByte",
"tejasbubane",
"Tyresius92"
],
"files": {
"solution": ["bowling.js"],
"test": ["bowling.spec.js"],
Expand Down
18 changes: 17 additions & 1 deletion exercises/practice/change/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"blurb": "Correctly determine change to be given using the least number of coins",
"authors": [],
"authors": ["RobinCsl"],
"contributors": [
"adamxtokyo",
"G-Rath",
"gargrave",
"iagocavalcante",
"lantran",
"matthewmorgan",
"paparomeo",
"PSalant726",
"rchavarria",
"SleeplessByte",
"tejasbubane",
"TomPradat",
"Tyresius92",
"whatcoda"
],
"files": {
"solution": ["change.js"],
"test": ["change.spec.js"],
Expand Down
Loading