Skip to content

Commit 39b231f

Browse files
🤖 Add authors and contributors to Practice Exercises (JuliaLang#354)
* Add authors and contributors to Practice Exercises For each Practice Exercise, we've looked at the commit history of its files to see which commits touched that Practice Exercise. Each commit that we could associate with a Practice Exercise was used to determine authorship/contributorship. ### Authors 1. Find the Git commit author of the oldest commit linked to that Practice Exercise 2. Find the GitHub username for the Git commit author of that commit 3. Add the GitHub username of the Git commit author to the `authors` key in the `.meta/config.json` file ### Contributors 1. Find the Git commit authors and any co-authors of all but the oldest commit linked to that Practice Exercise. If there is only one commit, there won't be any contributors. 1. Exclude the Git commit author and any co-authors of the oldest commit from the list of Git commit authors (an author is _not_ also a contributor) 2. Find the GitHub usernames for the Git commit authors and any co-authors of those commits 3. Add the GitHub usernames of the Git commit authors and any co-authors to the `contributor` key in the `.meta/config.json` file We used the GitHub GraphQL API to find the username of a commit author or any co-authors. In some cases though, a username cannot be found for a commit (e.g. due to the user account no longer existing), in which case the commit was skipped. ## Renames There are a small number of Practice Exercises that might have been renamed at some point. You can ask Git to "follow" a file over its renames using `git log --follow <file>`, which will also return commits made before renames. Unfortunately, Git does not store renames, it just stores the contents of the renamed files and tries to guess if a file was renamed by looking at its contents. This _can_ (and will) lead to false positives, where Git will think a file has been renamed whereas it hasn't. As we don't want to have incorrect authors/contributors for exercises, we're ignoring renames. The only exception to this are known exercise renames: - `bracket-push` was renamed to `matching-brackets` - `retree` was renamed to `satellite` - `resistor-colors` was renamed to `resistor-color-duo` - `kindergarden-garden` was renamed to `kindergarten-garden` ## Exclusions There are some commits that we skipped over, and which thus didn't influence the authors/contributors list: - Commits authored by `dependabot[bot]`, `dependabot-preview[bot]` or `github-actions[bot]` - Bulk update PRs made by `ErikSchierboom` or `kytrinx` to update the track * Restore formatting * Manually fix authors A few noteworthy changes: * JuliaLang#162 has manually been excluded as it was a mass-PR done by changing a global template * PRs to several exercises that changed the exercise itself were all included * All reviews were included as contribution; reviewers where added where missing; however due to GitHub's UI hiding reviewers in the history, I may have missed reviews done on PRs that weren't on the initial PR of an exercise * 6c8a1db caused weirdness due to having two parents from merging the default branch into the PR branch. This has manually been resolved as well If you feel like you've been removed or added unjustly, let me know and I'll re-add you in a follow-up PR. Sorry if that happened! Co-authored-by: Sascha Mann <[email protected]>
1 parent 0aa1b78 commit 39b231f

File tree

53 files changed

+353
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+353
-53
lines changed

exercises/practice/accumulate/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
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.",
3-
"authors": [],
3+
"authors": [
4+
"logankilpatrick"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/acronym/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Convert a long phrase to its acronym",
3-
"authors": [],
3+
"authors": [
4+
"PseudoCodeNerd"
5+
],
6+
"contributors": [
7+
"SaschaMann"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/all-your-base/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
3-
"authors": [],
3+
"authors": [
4+
"serialhex"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/allergies/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
3-
"authors": [],
3+
"authors": [
4+
"DarkoGNU"
5+
],
6+
"contributors": [
7+
"miguelraz",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/anagram/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
3-
"authors": [],
3+
"authors": [
4+
"andrej-makarov-skrt"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/armstrong-numbers/.meta/config.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"blurb": "Determine if a number is an Armstrong number",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [],
47
"files": {
58
"solution": [],
69
"test": ["runtests.jl"],

exercises/practice/atbash-cipher/.meta/config.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
22
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
3-
"authors": [],
3+
"authors": [
4+
"andrej-makarov-skrt"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann",
9+
"Teo-ShaoWei"
10+
],
411
"files": {
512
"solution": [],
613
"test": ["runtests.jl"],

exercises/practice/binary-search/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Implement a binary search algorithm.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"tomerarnon"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/bob/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"andrej-makarov-skrt",
8+
"cmcaine"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/circular-buffer/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.",
3-
"authors": [],
3+
"authors": [
4+
"vyu"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/clock/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Implement a clock that handles times without dates.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/collatz-conjecture/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"guilhermebodin"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/complex-numbers/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Implement complex numbers.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"bovine3dom"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/custom-set/.meta/config.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"blurb": "Create a custom set type.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [],
47
"files": {
58
"solution": [],
69
"test": ["runtests.jl"],

exercises/practice/darts/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Write a function that returns the earned points in a single toss of a Darts game",
3-
"authors": [],
3+
"authors": [
4+
"vyu"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/difference-of-squares/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"bovine3dom",
8+
"cmcaine"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/dnd-character/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Randomly generate Dungeons & Dragons characters",
3-
"authors": [],
3+
"authors": [
4+
"leo60228"
5+
],
6+
"contributors": [
7+
"SaschaMann"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/etl/.meta/config.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
22
"blurb": "We are going to do the `Transform` step of an Extract-Transform-Load.",
3-
"authors": [],
3+
"authors": [
4+
"andrej-makarov-skrt"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"marcoesposito1988",
9+
"SaschaMann"
10+
],
411
"files": {
512
"solution": [],
613
"test": ["runtests.jl"],

exercises/practice/gigasecond/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.",
3-
"authors": [],
3+
"authors": [
4+
"andrej-makarov-skrt"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/grains/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
3-
"authors": [],
3+
"authors": [
4+
"HarrisonGrodin"
5+
],
6+
"contributors": [
7+
"dhpollack",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/hamming/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Calculate the Hamming difference between two DNA strands.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"andrej-makarov-skrt",
8+
"cmcaine"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/hello-world/.meta/config.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"blurb": "The classical introductory exercise. Just say \"Hello, World!\"",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [],
47
"files": {
58
"solution": [],
69
"test": ["runtests.jl"],

exercises/practice/isbn-verifier/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Check if a given string is a valid ISBN-10 number.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/isogram/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Determine if a word or phrase is an isogram.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/leap/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Given a year, report if it is a leap year.",
3-
"authors": [],
3+
"authors": [
4+
"andrej-makarov-skrt"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"SaschaMann"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/luhn/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"cmcaine"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/matching-brackets/.meta/config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"blurb": "Make sure the brackets and braces all match.",
3-
"authors": [],
3+
"authors": [
4+
"chinglamchoi"
5+
],
6+
"contributors": [
7+
"SaschaMann"
8+
],
49
"files": {
510
"solution": [],
611
"test": ["runtests.jl"],

exercises/practice/minesweeper/.meta/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"blurb": "Add the numbers to a minesweeper board",
3-
"authors": [],
3+
"authors": [
4+
"abhishalya"
5+
],
6+
"contributors": [
7+
"SaschaMann",
8+
"logankilpatrick"
9+
],
410
"files": {
511
"solution": [],
612
"test": ["runtests.jl"],

exercises/practice/nucleotide-count/.meta/config.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"blurb": "Given a DNA string, compute how many times each nucleotide occurs in the string.",
3-
"authors": [],
3+
"authors": [
4+
"SaschaMann"
5+
],
6+
"contributors": [
7+
"cmcaine",
8+
"daveyarwood",
9+
"tripitakit",
10+
"andrej-makarov-skrt"
11+
],
412
"files": {
513
"solution": [],
614
"test": ["runtests.jl"],

0 commit comments

Comments
 (0)