Browse Source

Update String repeat.md

PythonCoder8 3 years ago
parent
commit
33571c2d7e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      8 kyu/String repeat/String repeat.md

+ 2 - 0
8 kyu/String repeat/String repeat.md

@@ -1,5 +1,7 @@
 # 8 kyu - String repeat - Authored by wichu
 
+Link to kata: https://www.codewars.com/kata/57a0e5c372292dd76d000d7e
+
 Write a function called repeatStr which repeats the given string string exactly n times.
 
 `repeatStr(6, "I") // "IIIIII"