Skip to content

Commit 4ebce00

Browse files
authored
Merge pull request #528 from robkeim/write-a-program
Removes "write a program" from descriptions to address #321
2 parents d4c7dc3 + 6630d5e commit 4ebce00

File tree

65 files changed

+74
-77
lines changed

Some content is hidden

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

65 files changed

+74
-77
lines changed

exercises/all-your-base/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
blurb: "Write a program that will convert a number, represented as a sequence of digits in one base, to any other base."
2+
blurb: "Convert a number, represented as a sequence of digits in one base, to any other base."

exercises/allergies/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a person's allergy score, can tell them whether or not they're allergic to a given item, and their full list of allergies."
2+
blurb: "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies."
33
source: "Jumpstart Lab Warm-up"
44
source_url: "http://jumpstartlab.com"

exercises/anagram/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a word and a list of possible anagrams, selects the correct sublist."
2+
blurb: "Given a word and a list of possible anagrams, select the correct sublist."
33
source: "Inspired by the Extreme Startup game"
44
source_url: "https://github.com/rchatley/extreme_startup"

exercises/beer-song/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program which produces the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall."
2+
blurb: "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall."
33
source: "Learn to Program by Chris Pine"
44
source_url: "http://pine.fm/LearnToProgram/?Chapter=06"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that inserts numbers and searches in a binary tree."
2+
blurb: "Insert and search for numbers in a binary tree."
33
source: "Josh Cheek"
44
source_url: "https://twitter.com/josh_cheek"

exercises/binary-search/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that implements a binary search algorithm."
2+
blurb: "Implement a binary search algorithm."
33
source: "Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/Binary_search_algorithm"

exercises/binary/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles"
2+
blurb: "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles"
33
source: "All of Computer Science"
44
source_url: "http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-"

exercises/change/description.md

Lines changed: 3 additions & 3 deletions

exercises/change/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
blurb: "Write a program that will correctly determine change to be given using the least number of coins"
2+
blurb: "Correctly determine change to be given using the least number of coins"
33
source: "Software Craftsmanship - Kata-logue"
44
source_url: "http://craftsmanship.sv.cmu.edu/exercises/coin-change-kata"
55

exercises/crypto-square/description.md

Lines changed: 1 addition & 2 deletions

exercises/etl/description.md

Lines changed: 2 additions & 2 deletions

exercises/flatten-array/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will take a nested list and returns a single list with all values except nil/null"
2+
blurb: "Take a nested list and return a single list with all values except nil/null"
33
source: "Interview Question"
44
source_url: "https://reference.wolfram.com/language/ref/Flatten.html"

exercises/food-chain/description.md

Lines changed: 4 additions & 5 deletions

exercises/food-chain/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that generates the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'"
2+
blurb: "Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'"
33
source: "Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/There_Was_an_Old_Lady_Who_Swallowed_a_Fly"

exercises/gigasecond/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that calculates the moment when someone has lived for 10^9 seconds."
2+
blurb: "Calculate the moment when someone has lived for 10^9 seconds."
33
source: "Chapter 9 in Chris Pine's online Learn to Program tutorial."
44
source_url: "http://pine.fm/LearnToProgram/?Chapter=09"

exercises/grade-school/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a small archiving program that stores students' names along with the grade that they are in."
2+
blurb: "Given students' names along with the grade that they are in, create a roster for the school"
33
source: "A pairing session with Phil Battos at gSchool"
44
source_url: "http://gschool.it"

exercises/grains/description.md

Lines changed: 1 addition & 1 deletion

exercises/grains/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that calculates the number of grains of wheat on a chessboard given that the number on each square doubles."
2+
blurb: "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles."
33
source: "JavaRanch Cattle Drive, exercise 6"
44
source_url: "http://www.javaranch.com/grains.jsp"

exercises/hamming/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can calculate the Hamming difference between two DNA strands."
2+
blurb: "Calculate the Hamming difference between two DNA strands."
33
source: "The Calculating Point Mutations problem at Rosalind"
44
source_url: "http://rosalind.info/problems/hamm/"

exercises/hello-world/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: 'Write a function that greets the user by name, or by saying "Hello, World!" if no name is given.'
2+
blurb: 'Greet the user by name, or by saying "Hello, World!" if no name is given.'
33
source: "This is an exercise to introduce users to using Exercism"
44
source_url: "http://en.wikipedia.org/wiki/%22Hello,_world!%22_program"

exercises/hexadecimal/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
blurb: "Write a program that will convert a hexadecimal number, represented as a string (e.g. \"10af8c\"), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion)."
2+
blurb: "Convert a hexadecimal number, represented as a string (e.g. \"10af8c\"), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion)."
33
source: "All of Computer Science"
44
source_url: "http://www.wolframalpha.com/examples/NumberBases.html"
55

exercises/house/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
blurb: "Write a program that outputs the nursery rhyme 'This is the House that Jack Built'."
2+
blurb: "Output the nursery rhyme 'This is the House that Jack Built'."
33
source: "British nursery rhyme"
44
source_url: "http://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built"
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a diagram, can tell you which plants each child in the kindergarten class is responsible for."
2+
blurb: "Given a diagram, determine which plants each child in the kindergarten class is responsible for."
33
source: "Random musings during airplane trip."
44
source_url: "http://jumpstartlab.com"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, when given a string of digits, can calculate the largest product for a contiguous substring of digits of length n."
2+
blurb: "Given a string of digits, calculate the largest product for a contiguous substring of digits of length n."
33
source: "A variation on Problem 8 at Project Euler"
44
source_url: "http://projecteuler.net/problem=8"

exercises/leap/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will take a year and report if it is a leap year."
2+
blurb: "Given a year, report if it is a leap year."
33
source: "JavaRanch Cattle Drive, exercise 3"
44
source_url: "http://www.javaranch.com/leap.jsp"

exercises/luhn/description.md

Lines changed: 1 addition & 1 deletion

exercises/luhn/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can take a number and determine whether or not it is valid per the Luhn formula."
2+
blurb: "Given a number determine whether or not it is valid per the Luhn formula."
33
source: "The Luhn Algorithm on Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/Luhn_algorithm"

exercises/matrix/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a string representing a matrix of numbers, can return the rows and columns of that matrix."
2+
blurb: "Given a string representing a matrix of numbers, return the rows and columns of that matrix."
33
source: "Warmup to the `saddle-points` warmup."
44
source_url: "http://jumpstartlab.com"

exercises/minesweeper/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
blurb: "Write a program that adds the numbers to a minesweeper board"
2+
blurb: "Add the numbers to a minesweeper board"

exercises/nth-prime/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can tell you what the nth prime is."
2+
blurb: "Given a number n, determine what the nth prime is."
33
source: "A variation on Problem 7 at Project Euler"
44
source_url: "http://projecteuler.net/problem=7"

exercises/ocr-numbers/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a 3 x 4 grid of pipes, underscores, and spaces, can determine which number is represented, or whether it is garbled."
2+
blurb: "Given a 3 x 4 grid of pipes, underscores, and spaces, determine which number is represented, or whether it is garbled."
33
source: "Inspired by the Bank OCR kata"
44
source_url: "http://codingdojo.org/cgi-bin/wiki.pl?KataBankOCR"

exercises/octal/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
blurb: "Write a program that will convert a octal number, represented as a string (e.g. '1735263'), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion)."
2+
blurb: "Convert a octal number, represented as a string (e.g. '1735263'), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion)."
33
source: "All of Computer Science"
44
source_url: "http://www.wolframalpha.com/input/?i=base+8"
55

exercises/paasio/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that reports network IO statistics"
2+
blurb: "Report network IO statistics"
33
source: "Brian Matsuo"
44
source_url: "https://github.com/bmatsuo"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can detect palindrome products in a given range."
2+
blurb: "Detect palindrome products in a given range."
33
source: "Problem 4 at Project Euler"
44
source_url: "http://projecteuler.net/problem=4"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
blurb: "Write a program that counts the frequency of letters in texts using parallel computation."
2+
blurb: "Count the frequency of letters in texts using parallel computation."
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that computes Pascal's triangle up to a given number of rows."
2+
blurb: "Compute Pascal's triangle up to a given number of rows."
33
source: "Pascal's Triangle at Wolfram Math World"
44
source_url: "http://mathworld.wolfram.com/PascalsTriangle.html"

exercises/phone-number/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that cleans up user-entered phone numbers so that they can be sent SMS messages."
2+
blurb: "Clean up user-entered phone numbers so that they can be sent SMS messages."
33
source: "Event Manager by JumpstartLab"
44
source_url: "http://tutorials.jumpstartlab.com/projects/eventmanager.html"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can calculate the Hamming difference between two DNA strands."
2+
blurb: "Calculate the Hamming difference between two DNA strands."
33
source: "The Calculating Point Mutations problem at Rosalind"
44
source_url: "http://rosalind.info/problems/hamm/"

exercises/protein-translation/description.md

Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
2-
blurb: "Write a program that will translate RNA sequences into proteins."
2+
blurb: "Translate RNA sequences into proteins."
33
source: "Tyler Long"

exercises/proverb/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Write a program that outputs the full text of this proverbial rhyme."
2+
blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Output the full text of this proverbial rhyme."
33
source: "Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/For_Want_of_a_Nail"
55

exercises/queen-attack/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that positions two queens on a chess board and indicates whether or not they are positioned so that they can attack each other."
2+
blurb: "Given the position of two queens on a chess board, indicate whether or not they are positioned so that they can attack each other."
33
source: "J Dalbey's Programming Practice problems"
44
source_url: "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"

exercises/raindrops/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that converts a number to a string, the contents of which depend on the number's factors."
2+
blurb: "Convert a number to a string, the contents of which depend on the number's factors."
33
source: "A variation on a famous interview question intended to weed out potential candidates."
44
source_url: "http://jumpstartlab.com"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a DNA strand, returns its RNA complement (per RNA transcription)."
2+
blurb: "Given a DNA strand, return its RNA complement (per RNA transcription)."
33
source: "Rosalind"
44
source_url: "http://rosalind.info/problems/rna"

exercises/robot-name/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that manages robot factory settings."
2+
blurb: "Manage robot factory settings."
33
source: "A debugging session with Paul Blackwell at gSchool."
44
source_url: "http://gschool.it"

exercises/saddle-points/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that detects saddle points in a matrix."
2+
blurb: "Detect saddle points in a matrix."
33
source: "J Dalbey's Programming Practice problems"
44
source_url: "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"

exercises/say/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will take a number from 0 to 999,999,999,999 and spell out that number in English."
2+
blurb: "Given a number from 0 to 999,999,999,999, spell out that number in English."
33
source: "A variation on JavaRanch CattleDrive, exercise 4a"
44
source_url: "http://www.javaranch.com/say.jsp"

exercises/scale-generator/description.md

Lines changed: 3 additions & 4 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
blurb: "Write a program that can generate musical scales, given a starting note and a set of intervals. "
2+
blurb: "Generate musical scales, given a starting note and a set of intervals. "

exercises/scrabble-score/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a word, computes the scrabble score for that word."
2+
blurb: "Given a word, compute the scrabble score for that word."
33
source: "Inspired by the Extreme Startup game"
44
source_url: "https://github.com/rchatley/extreme_startup"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will take a decimal number, and convert it to the appropriate sequence of events for a secret handshake."
2+
blurb: "Given a decimal number, convert it to the appropriate sequence of events for a secret handshake."
33
source: "Bert, in Mary Poppins"
44
source_url: "http://www.imdb.com/character/ch0011238/quotes"

exercises/series/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will take a string of digits and give you all the contiguous substrings of length `n` in that string."
2+
blurb: "Given a string of digits, output all the contiguous substrings of length `n` in that string."
33
source: "A subset of the Problem 8 at Project Euler"
44
source_url: "http://projecteuler.net/problem=8"

exercises/sieve/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that uses the Sieve of Eratosthenes to find all the primes from 2 up to a given number."
2+
blurb: "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number."
33
source: "Sieve of Eratosthenes at Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"

exercises/space-age/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given an age in seconds, calculates how old someone is in terms of a given planet's solar years."
2+
blurb: "Given an age in seconds, calculate how old someone is in terms of a given planet's solar years."
33
source: "Partially inspired by Chapter 1 in Chris Pine's online Learn to Program tutorial."
44
source_url: "http://pine.fm/LearnToProgram/?Chapter=01"

exercises/sum-of-multiples/description.md

Lines changed: 2 additions & 2 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that, given a number, can find the sum of all the multiples of particular numbers up to but not including that number."
2+
blurb: "Given a number, find the sum of all the multiples of particular numbers up to but not including that number."
33
source: "A variation on Problem 1 at Project Euler"
44
source_url: "http://projecteuler.net/problem=1"

exercises/transpose/description.md

Lines changed: 1 addition & 1 deletion

exercises/transpose/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that takes input text and outputs it transposed."
2+
blurb: "Take input text and output it transposed."
33
source: "Reddit r/dailyprogrammer challenge #270 [Easy]."
44
source_url: "https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text"

exercises/triangle/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that can tell you if a triangle is equilateral, isosceles, or scalene."
2+
blurb: "Determine if a triangle is equilateral, isosceles, or scalene."
33
source: "The Ruby Koans triangle project, parts 1 & 2"
44
source_url: "http://rubykoans.com"

exercises/trinary/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that will convert a trinary number, represented as a string (e.g. '102012'), to its decimal equivalent using first principles."
2+
blurb: "Convert a trinary number, represented as a string (e.g. '102012'), to its decimal equivalent using first principles."
33
source: "All of Computer Science"
44
source_url: "http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-"

exercises/twelve-days/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Write a program that outputs the lyrics to 'The Twelve Days of Christmas'"
2+
blurb: "Output the lyrics to 'The Twelve Days of Christmas'"
33
source: "Wikipedia"
44
source_url: "http://en.wikipedia.org/wiki/The_Twelve_Days_of_Christmas_(song)"

0 commit comments

Comments
 (0)