Skip to content

🤖 Add authors and contributors to Practice Exercises #1519

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 all 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
14 changes: 13 additions & 1 deletion exercises/practice/accumulate/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"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": [
"bressain"
],
"contributors": [
"B1tF8er",
"balazsbotond",
"ChrisPritchard",
"ErikSchierboom",
"j2jensen",
"jwood803",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Accumulate.cs"
Expand Down
14 changes: 13 additions & 1 deletion exercises/practice/acronym/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"blurb": "Convert a long phrase to its acronym",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"bressain",
"j2jensen",
"jwood803",
"mattcbaker",
"robkeim",
"vgrigoriu",
"wolf99",
"yvincent"
],
"files": {
"solution": [
"Acronym.cs"
Expand Down
11 changes: 10 additions & 1 deletion exercises/practice/affine-cipher/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
"authors": [],
"authors": [
"davidelettieri"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"robkeim",
"wolf99",
"Zureka"
],
"files": {
"solution": [
"AffineCipher.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/all-your-base/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"FridaTveit",
"j2jensen",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"AllYourBase.cs"
Expand Down
12 changes: 11 additions & 1 deletion exercises/practice/allergies/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"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": [
"bressain"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"jwood803",
"NextNebula",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Allergies.cs"
Expand Down
9 changes: 8 additions & 1 deletion exercises/practice/alphametics/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"blurb": "Write a function to solve alphametics puzzles.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"j2jensen",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Alphametics.cs"
Expand Down
10 changes: 10 additions & 0 deletions exercises/practice/anagram/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
"authors": [],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"contributors": [
"bressain",
"ErikSchierboom",
"irrationalRock",
"j2jensen",
"jwood803",
"NextNebula",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Anagram.cs"
Expand Down
9 changes: 8 additions & 1 deletion exercises/practice/armstrong-numbers/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"blurb": "Determine if a number is an Armstrong number",
"authors": [],
"authors": [
"robkeim"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"wolf99"
],
"files": {
"solution": [
"ArmstrongNumbers.cs"
Expand Down
12 changes: 11 additions & 1 deletion exercises/practice/atbash-cipher/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
"authors": [],
"authors": [
"bressain"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"jwood803",
"robkeim",
"tushartyagi",
"wolf99"
],
"files": {
"solution": [
"AtbashCipher.cs"
Expand Down
11 changes: 10 additions & 1 deletion exercises/practice/bank-account/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"blurb": "Simulate a bank account supporting opening/closing, withdraws, and deposits of money. Watch out for concurrent transactions!",
"authors": [],
"authors": [
"robkeim"
],
"contributors": [
"AndrewYHuang",
"artiom",
"ErikSchierboom",
"j2jensen",
"wolf99"
],
"files": {
"solution": [
"BankAccount.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/beer-song/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"j2jensen",
"jwood803",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"BeerSong.cs"
Expand Down
11 changes: 10 additions & 1 deletion exercises/practice/binary-search-tree/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"blurb": "Insert and search for numbers in a binary tree.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"bressain",
"j2jensen",
"robkeim",
"ShamilS",
"wolf99"
],
"files": {
"solution": [
"BinarySearchTree.cs"
Expand Down
11 changes: 10 additions & 1 deletion exercises/practice/binary-search/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"blurb": "Implement a binary search algorithm.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"abecerramatias",
"j2jensen",
"robkeim",
"vgrigoriu",
"wolf99"
],
"files": {
"solution": [
"BinarySearch.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/binary/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles",
"authors": [],
"authors": [
"bressain"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"jwood803",
"wolf99"
],
"files": {
"solution": [
"Binary.cs"
Expand Down
12 changes: 12 additions & 0 deletions exercises/practice/bob/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
"authors": [],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"contributors": [
"austinlyons",
"bressain",
"delve",
"ErikSchierboom",
"j2jensen",
"jwood803",
"kytrinyx",
"robkeim",
"tomschluter",
"wolf99"
],
"files": {
"solution": [
"Bob.cs"
Expand Down
11 changes: 10 additions & 1 deletion exercises/practice/book-store/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"blurb": "To try and encourage more sales of different books from a popular 5 book series, a bookshop has decided to offer discounts of multiple-book purchases.",
"authors": [],
"authors": [
"robkeim"
],
"contributors": [
"AndrewYHuang",
"ErikSchierboom",
"j2jensen",
"tomschluter",
"wolf99"
],
"files": {
"solution": [
"BookStore.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/bowling/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Score a bowling game",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"bmeverett",
"j2jensen",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Bowling.cs"
Expand Down
12 changes: 11 additions & 1 deletion exercises/practice/change/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"blurb": "Correctly determine change to be given using the least number of coins",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"FizzBuzz791",
"j2jensen",
"robkeim",
"sjwarner-bp",
"wolf99",
"Zureka"
],
"files": {
"solution": [
"Change.cs"
Expand Down
9 changes: 8 additions & 1 deletion exercises/practice/circular-buffer/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"blurb": "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"j2jensen",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"CircularBuffer.cs"
Expand Down
19 changes: 18 additions & 1 deletion exercises/practice/clock/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
{
"blurb": "Implement a clock that handles times without dates.",
"authors": [],
"authors": [
"rprouse"
],
"contributors": [
"avjgit",
"bmeverett",
"bressain",
"ErikSchierboom",
"j2jensen",
"jwood803",
"kytrinyx",
"mattcbaker",
"robkeim",
"Thorocaine",
"vamcs",
"vgrigoriu",
"wolf99"
],
"files": {
"solution": [
"Clock.cs"
Expand Down
12 changes: 11 additions & 1 deletion exercises/practice/collatz-conjecture/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
"authors": [],
"authors": [
"jpreese"
],
"contributors": [
"ErikSchierboom",
"FizzBuzz791",
"j2jensen",
"robkeim",
"ruanha",
"wolf99"
],
"files": {
"solution": [
"CollatzConjecture.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/complex-numbers/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Implement complex numbers.",
"authors": [],
"authors": [
"robkeim"
],
"contributors": [
"ErikSchierboom",
"j2jensen",
"kytrinyx",
"wolf99"
],
"files": {
"solution": [
"ComplexNumbers.cs"
Expand Down
10 changes: 9 additions & 1 deletion exercises/practice/connect/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"blurb": "Compute the result for a game of Hex / Polygon",
"authors": [],
"authors": [
"ErikSchierboom"
],
"contributors": [
"bmeverett",
"j2jensen",
"robkeim",
"wolf99"
],
"files": {
"solution": [
"Connect.cs"
Expand Down
Loading