Skip to content

Commit dabcdad

Browse files
authored
Sync exercise metadata (#623)
1 parent 3a90ed9 commit dabcdad

File tree

49 files changed

+59
-62
lines changed

Some content is hidden

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

49 files changed

+59
-62
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
".meta/src/reference/kotlin/Acronym.kt"
2828
]
2929
},
30-
"blurb": "Convert a long phrase to its acronym",
30+
"blurb": "Convert a long phrase to its acronym.",
3131
"source": "Julien Vanier",
3232
"source_url": "https://github.com/monkbroc"
3333
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
},
2020
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
2121
"source": "Wikipedia",
22-
"source_url": "http://en.wikipedia.org/wiki/Affine_cipher"
22+
"source_url": "https://en.wikipedia.org/wiki/Affine_cipher"
2323
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
]
2727
},
2828
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
29-
"source": "Jumpstart Lab Warm-up",
30-
"source_url": "http://jumpstartlab.com"
29+
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
30+
"source_url": "https://turing.edu"
3131
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
".meta/src/reference/kotlin/ArmstrongNumber.kt"
1818
]
1919
},
20-
"blurb": "Determine if a number is an Armstrong number",
20+
"blurb": "Determine if a number is an Armstrong number.",
2121
"source": "Wikipedia",
2222
"source_url": "https://en.wikipedia.org/wiki/Narcissistic_number"
2323
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
3030
"source": "Wikipedia",
31-
"source_url": "http://en.wikipedia.org/wiki/Atbash"
31+
"source_url": "https://en.wikipedia.org/wiki/Atbash"
3232
}

exercises/practice/beer-song/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"blurb": "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.",
2929
"source": "Learn to Program by Chris Pine",
30-
"source_url": "http://pine.fm/LearnToProgram/?Chapter=06"
30+
"source_url": "https://pine.fm/LearnToProgram/?Chapter=06"
3131
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@
1919
]
2020
},
2121
"blurb": "Insert and search for numbers in a binary tree.",
22-
"source": "Josh Cheek",
23-
"source_url": "https://twitter.com/josh_cheek"
22+
"source": "Josh Cheek"
2423
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Implement a binary search algorithm.",
3030
"source": "Wikipedia",
31-
"source_url": "http://en.wikipedia.org/wiki/Binary_search_algorithm"
31+
"source_url": "https://en.wikipedia.org/wiki/Binary_search_algorithm"
3232
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
2929
"source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.",
30-
"source_url": "http://pine.fm/LearnToProgram/?Chapter=06"
30+
"source_url": "https://pine.fm/LearnToProgram/?Chapter=06"
3131
}

exercises/practice/change/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
".meta/src/reference/kotlin/ChangeCalculator.kt"
2727
]
2828
},
29-
"blurb": "Correctly determine change to be given using the least number of coins",
29+
"blurb": "Correctly determine change to be given using the least number of coins.",
3030
"source": "Software Craftsmanship - Coin Change Kata",
3131
"source_url": "https://web.archive.org/web/20130115115225/http://craftsmanship.sv.cmu.edu:80/exercises/coin-change-kata"
3232
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,5 @@
2727
]
2828
},
2929
"blurb": "Implement a clock that handles times without dates.",
30-
"source": "Pairing session with Erin Drummond",
31-
"source_url": "https://twitter.com/ebdrummond"
30+
"source": "Pairing session with Erin Drummond"
3231
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
".meta/src/reference/kotlin/CollatzCalculator.kt"
2424
]
2525
},
26-
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
26+
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
2727
"source": "An unsolved problem in mathematics named after mathematician Lothar Collatz",
2828
"source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem"
2929
}

exercises/practice/crypto-square/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
},
2020
"blurb": "Implement the classic method for composing secret messages called a square code.",
2121
"source": "J Dalbey's Programming Practice problems",
22-
"source_url": "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
22+
"source_url": "https://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
2323
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
".meta/src/reference/kotlin/Darts.kt"
1818
]
1919
},
20-
"blurb": "Write a function that returns the earned points in a single toss of a Darts game",
20+
"blurb": "Write a function that returns the earned points in a single toss of a Darts game.",
2121
"source": "Inspired by an exercise created by a professor Della Paolera in Argentina"
2222
}

exercises/practice/diamond/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
},
2626
"blurb": "Given a letter, print a diamond starting with 'A' with the supplied letter at the widest point.",
2727
"source": "Seb Rose",
28-
"source_url": "http://claysnow.co.uk/recycling-tests-in-tdd/"
28+
"source_url": "https://web.archive.org/web/20220807163751/http://claysnow.co.uk/recycling-tests-in-tdd/"
2929
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
2929
"source": "Problem 6 at Project Euler",
30-
"source_url": "http://projecteuler.net/problem=6"
30+
"source_url": "https://projecteuler.net/problem=6"
3131
}

exercises/practice/diffie-hellman/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
},
2020
"blurb": "Diffie-Hellman key exchange.",
2121
"source": "Wikipedia, 1024 bit key from www.cryptopp.com/wiki.",
22-
"source_url": "http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange"
22+
"source_url": "https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange"
2323
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
".meta/src/reference/kotlin/ETL.kt"
2727
]
2828
},
29-
"blurb": "We are going to do the `Transform` step of an Extract-Transform-Load.",
30-
"source": "The Jumpstart Lab team",
31-
"source_url": "http://jumpstartlab.com"
29+
"blurb": "Change the data format for scoring a game to more easily add other languages.",
30+
"source": "Based on an exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
31+
"source_url": "https://turing.edu"
3232
}

exercises/practice/flatten-array/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".meta/src/reference/kotlin/Flattener.kt"
2626
]
2727
},
28-
"blurb": "Take a nested list and return a single list with all values except nil/null",
28+
"blurb": "Take a nested list and return a single list with all values except nil/null.",
2929
"source": "Interview Question",
3030
"source_url": "https://reference.wolfram.com/language/ref/Flatten.html"
3131
}

exercises/practice/forth/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
".meta/src/reference/kotlin/Forth.kt"
2424
]
2525
},
26-
"blurb": "Implement an evaluator for a very simple subset of Forth"
26+
"blurb": "Implement an evaluator for a very simple subset of Forth."
2727
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
},
3030
"blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.",
3131
"source": "Chapter 9 in Chris Pine's online Learn to Program tutorial.",
32-
"source_url": "http://pine.fm/LearnToProgram/?Chapter=09"
32+
"source_url": "https://pine.fm/LearnToProgram/?Chapter=09"
3333
}

exercises/practice/grade-school/.meta/config.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
".meta/src/reference/kotlin/GradeSchool.kt"
2929
]
3030
},
31-
"blurb": "Given students' names along with the grade that they are in, create a roster for the school",
32-
"source": "A pairing session with Phil Battos at gSchool",
33-
"source_url": "http://gschool.it"
31+
"blurb": "Given students' names along with the grade that they are in, create a roster for the school.",
32+
"source": "A pairing session with Phil Battos at gSchool"
3433
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
]
2525
},
2626
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
27-
"source": "JavaRanch Cattle Drive, exercise 6",
28-
"source_url": "http://www.javaranch.com/grains.jsp"
27+
"source": "The CodeRanch Cattle Drive, Assignment 6",
28+
"source_url": "https://coderanch.com/wiki/718824/Grains"
2929
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Calculate the Hamming difference between two DNA strands.",
3030
"source": "The Calculating Point Mutations problem at Rosalind",
31-
"source_url": "http://rosalind.info/problems/hamm/"
31+
"source_url": "https://rosalind.info/problems/hamm/"
3232
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
".meta/src/reference/kotlin/HelloWorld.kt"
3333
]
3434
},
35-
"blurb": "The classical introductory exercise. Just say \"Hello, World!\"",
35+
"blurb": "Exercism's classic introductory exercise. Just say \"Hello, World!\".",
3636
"source": "This is an exercise to introduce users to using Exercism",
37-
"source_url": "http://en.wikipedia.org/wiki/%22Hello,_world!%22_program"
37+
"source_url": "https://en.wikipedia.org/wiki/%22Hello,_world!%22_program"
3838
}

exercises/practice/largest-series-product/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Given a string of digits, calculate the largest product for a contiguous substring of digits of length n.",
3030
"source": "A variation on Problem 8 at Project Euler",
31-
"source_url": "http://projecteuler.net/problem=8"
31+
"source_url": "https://projecteuler.net/problem=8"
3232
}

exercises/practice/linked-list/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
".meta/src/reference/kotlin/LinkedList.kt"
2626
]
2727
},
28-
"blurb": "Implement a doubly linked list",
28+
"blurb": "Implement a doubly linked list.",
2929
"source": "Classic computer science topic"
3030
}

exercises/practice/list-ops/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
".meta/src/reference/kotlin/ListOps.kt"
2525
]
2626
},
27-
"blurb": "Implement basic list operations"
27+
"blurb": "Implement basic list operations."
2828
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
3030
"source": "The Luhn Algorithm on Wikipedia",
31-
"source_url": "http://en.wikipedia.org/wiki/Luhn_algorithm"
31+
"source_url": "https://en.wikipedia.org/wiki/Luhn_algorithm"
3232
}

exercises/practice/matrix/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
]
2020
},
2121
"blurb": "Given a string representing a matrix of numbers, return the rows and columns of that matrix.",
22-
"source": "Warmup to the `saddle-points` warmup.",
23-
"source_url": "http://jumpstartlab.com"
22+
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
23+
"source_url": "https://turing.edu"
2424
}

exercises/practice/nth-prime/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Given a number n, determine what the nth prime is.",
3030
"source": "A variation on Problem 7 at Project Euler",
31-
"source_url": "http://projecteuler.net/problem=7"
31+
"source_url": "https://projecteuler.net/problem=7"
3232
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"blurb": "Given a DNA string, compute how many times each nucleotide occurs in the string.",
2929
"source": "The Calculating DNA Nucleotides_problem at Rosalind",
30-
"source_url": "http://rosalind.info/problems/dna/"
30+
"source_url": "https://rosalind.info/problems/dna/"
3131
}

exercises/practice/pascals-triangle/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"blurb": "Compute Pascal's triangle up to a given number of rows.",
2929
"source": "Pascal's Triangle at Wolfram Math World",
30-
"source_url": "http://mathworld.wolfram.com/PascalsTriangle.html"
30+
"source_url": "https://www.wolframalpha.com/input/?i=Pascal%27s+triangle"
3131
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
},
2727
"blurb": "Determine if a number is perfect, abundant, or deficient based on Nicomachus' (60 - 120 CE) classification scheme for positive integers.",
2828
"source": "Taken from Chapter 2 of Functional Thinking by Neal Ford.",
29-
"source_url": "http://shop.oreilly.com/product/0636920029687.do"
29+
"source_url": "https://www.oreilly.com/library/view/functional-thinking/9781449365509/"
3030
}

exercises/practice/phone-number/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
]
2929
},
3030
"blurb": "Clean up user-entered phone numbers so that they can be sent SMS messages.",
31-
"source": "Event Manager by JumpstartLab",
32-
"source_url": "http://tutorials.jumpstartlab.com/projects/eventmanager.html"
31+
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
32+
"source_url": "https://turing.edu"
3333
}

exercises/practice/prime-factors/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
},
2525
"blurb": "Compute the prime factors of a given natural number.",
2626
"source": "The Prime Factors Kata by Uncle Bob",
27-
"source_url": "http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata"
27+
"source_url": "https://web.archive.org/web/20221026171801/http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata"
2828
}

exercises/practice/raindrops/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".meta/src/reference/kotlin/Raindrops.kt"
2626
]
2727
},
28-
"blurb": "Convert a number to a string, the content of which depends on the number's factors.",
28+
"blurb": "Convert a number into its corresponding raindrop sounds - Pling, Plang and Plong.",
2929
"source": "A variation on FizzBuzz, a famous technical interview question that is intended to weed out potential candidates. That question is itself derived from Fizz Buzz, a popular children's game for teaching division.",
3030
"source_url": "https://en.wikipedia.org/wiki/Fizz_buzz"
3131
}

exercises/practice/resistor-color/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
".meta/src/reference/kotlin/ResistorColor.kt"
1818
]
1919
},
20-
"blurb": "Convert a resistor band's color to its numeric representation",
20+
"blurb": "Convert a resistor band's color to its numeric representation.",
2121
"source": "Maud de Vries, Erik Schierboom",
2222
"source_url": "https://github.com/exercism/problem-specifications/issues/1458"
2323
}

exercises/practice/rna-transcription/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
},
3030
"blurb": "Given a DNA strand, return its RNA Complement Transcription.",
3131
"source": "Hyperphysics",
32-
"source_url": "http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html"
32+
"source_url": "https://web.archive.org/web/20220408112140/http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html"
3333
}

exercises/practice/saddle-points/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
},
2525
"blurb": "Detect saddle points in a matrix.",
2626
"source": "J Dalbey's Programming Practice problems",
27-
"source_url": "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
27+
"source_url": "https://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
2828
}

exercises/practice/say/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
]
2525
},
2626
"blurb": "Given a number from 0 to 999,999,999,999, spell out that number in English.",
27-
"source": "A variation on JavaRanch CattleDrive, exercise 4a",
28-
"source_url": "http://www.javaranch.com/say.jsp"
27+
"source": "A variation on the JavaRanch CattleDrive, Assignment 4",
28+
"source_url": "https://coderanch.com/wiki/718804"
2929
}

exercises/practice/scale-generator/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
".meta/src/reference/kotlin/Scale.kt"
1717
]
1818
},
19-
"blurb": "Generate musical scales, given a starting note and a set of intervals. "
19+
"blurb": "Generate musical scales, given a starting note and a set of intervals."
2020
}

exercises/practice/secret-handshake/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
},
2525
"blurb": "Given a decimal number, convert it to the appropriate sequence of events for a secret handshake.",
2626
"source": "Bert, in Mary Poppins",
27-
"source_url": "http://www.imdb.com/title/tt0058331/quotes/qt0437047"
27+
"source_url": "https://www.imdb.com/title/tt0058331/quotes/?item=qt0437047"
2828
}

exercises/practice/series/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Given a string of digits, output all the contiguous substrings of length `n` in that string.",
3030
"source": "A subset of the Problem 8 at Project Euler",
31-
"source_url": "http://projecteuler.net/problem=8"
31+
"source_url": "https://projecteuler.net/problem=8"
3232
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
".meta/src/reference/kotlin/SimpleCipher.kt"
2727
]
2828
},
29-
"blurb": "Implement a simple shift cipher like Caesar and a more secure substitution cipher",
29+
"blurb": "Implement a simple shift cipher like Caesar and a more secure substitution cipher.",
3030
"source": "Substitution Cipher at Wikipedia",
31-
"source_url": "http://en.wikipedia.org/wiki/Substitution_cipher"
31+
"source_url": "https://en.wikipedia.org/wiki/Substitution_cipher"
3232
}

exercises/practice/space-age/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
},
2929
"blurb": "Given an age in seconds, calculate how old someone is in terms of a given planet's solar years.",
3030
"source": "Partially inspired by Chapter 1 in Chris Pine's online Learn to Program tutorial.",
31-
"source_url": "http://pine.fm/LearnToProgram/?Chapter=01"
31+
"source_url": "https://pine.fm/LearnToProgram/?Chapter=01"
3232
}

exercises/practice/sum-of-multiples/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
},
2727
"blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
2828
"source": "A variation on Problem 1 at Project Euler",
29-
"source_url": "http://projecteuler.net/problem=1"
29+
"source_url": "https://projecteuler.net/problem=1"
3030
}

exercises/practice/transpose/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
},
1616
"blurb": "Take input text and output it transposed.",
1717
"source": "Reddit r/dailyprogrammer challenge #270 [Easy].",
18-
"source_url": "https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text"
18+
"source_url": "https://web.archive.org/web/20230630051421/https://old.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text/"
1919
}

exercises/practice/triangle/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
},
2727
"blurb": "Determine if a triangle is equilateral, isosceles, or scalene.",
2828
"source": "The Ruby Koans triangle project, parts 1 & 2",
29-
"source_url": "http://rubykoans.com"
29+
"source_url": "https://web.archive.org/web/20220831105330/http://rubykoans.com"
3030
}

0 commit comments

Comments
 (0)