Skip to content

Commit 9b6bb42

Browse files
πŸ€– Auto-sync docs, metadata, and filepaths (#3089)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a21a108 commit 9b6bb42

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

β€Žexercises/practice/allergies/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@
4545
},
4646
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
4747
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
48-
"source_url": "https://turing.edu"
48+
"source_url": "https://www.turing.edu/"
4949
}

β€Žexercises/practice/bob/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
},
4343
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
4444
"source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.",
45-
"source_url": "https://pine.fm/LearnToProgram/?Chapter=06"
45+
"source_url": "https://pine.fm/LearnToProgram/chap_06.html"
4646
}

β€Žexercises/practice/book-store/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
},
3838
"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.",
3939
"source": "Inspired by the harry potter kata from Cyber-Dojo.",
40-
"source_url": "https://cyber-dojo.org"
40+
"source_url": "https://cyber-dojo.org/creator/home"
4141
}

β€Žexercises/practice/etl/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
},
4343
"blurb": "Change the data format for scoring a game to more easily add other languages.",
4444
"source": "Based on an exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
45-
"source_url": "https://turing.edu"
45+
"source_url": "https://www.turing.edu/"
4646
}

β€Žexercises/practice/gigasecond/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
},
3737
"blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.",
3838
"source": "Chapter 9 in Chris Pine's online Learn to Program tutorial.",
39-
"source_url": "https://pine.fm/LearnToProgram/?Chapter=09"
39+
"source_url": "https://pine.fm/LearnToProgram/chap_09.html"
4040
}

β€Žexercises/practice/grep/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Search a file for lines matching a regular expression pattern. Return the line number and contents of each matching line.",
3030
"source": "Conversation with Nate Foster.",
31-
"source_url": "https://www.cs.cornell.edu/Courses/cs3110/2014sp/hw/0/ps0.pdf"
31+
"source_url": "https://www.cs.cornell.edu/courses/cs3110/2014sp/hw/0/ps0.pdf"
3232
}

β€Žexercises/practice/killer-sudoku-helper/.docs/instructions.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ The screenshots above have been generated using F-Puzzles.com, a Puzzle Setting
8181
[one-solution-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example1.png
8282
[four-solutions-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example2.png
8383
[not-possible-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example3.png
84-
[clover-puzzle]: https://app.crackingthecryptic.com/sudoku/HqTBn3Pr6R
84+
[clover-puzzle]: https://sudokupad.app/HqTBn3Pr6R
8585
[goodliffe-video]: https://youtu.be/c_NjEbFEeW0?t=1180

β€Žexercises/practice/kindergarten-garden/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
},
4040
"blurb": "Given a diagram, determine which plants each child in the kindergarten class is responsible for.",
4141
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
42-
"source_url": "https://turing.edu"
42+
"source_url": "https://www.turing.edu/"
4343
}

β€Žexercises/practice/markdown/.docs/instructions.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Your challenge is to re-write this code to make it easier to read and maintain w
1010
It would be helpful if you made notes of what you did in your refactoring in comments so reviewers can see that, but it isn't strictly necessary.
1111
The most important thing is to make the code better!
1212

13-
[markdown]: https://guides.github.com/features/mastering-markdown/
13+
[markdown]: https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax

β€Žexercises/practice/matrix/.meta/config.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
},
3737
"blurb": "Given a string representing a matrix of numbers, return the rows and columns of that matrix.",
3838
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
39-
"source_url": "https://turing.edu"
39+
"source_url": "https://www.turing.edu/"
4040
}

0 commit comments

Comments
Β (0)