Browse Source

Create String repeat.md

PythonCoder8 3 years ago
parent
commit
85d2272356
1 changed files with 6 additions and 0 deletions
  1. 6 0
      8 kyu/String repeat/String repeat.md

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

@@ -0,0 +1,6 @@
+# 8 kyu - String repeat - Authored by wichu
+
+Write a function called repeatStr which repeats the given string string exactly n times.
+
+`repeatStr(6, "I") // "IIIIII"
+repeatStr(5, "Hello") // "HelloHelloHelloHelloHello"`