Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 322 Bytes

Question_2796.md

File metadata and controls

16 lines (14 loc) · 322 Bytes

LeetCode Records - Question 2796 Repeat String

Attempt 1:

String.prototype.replicate = function(times) {
    result = "";
    for (let i = 0; i < times; i++) {
        result += this;
    }
    return result;
}
  • Runtime: 64 ms (Beats: 96.43%)
  • Memory: 59.42 MB (Beats: 71.03%)