function LeftRotateString(str, n)
{
    // write code here
    if(n === 0) return str;
    if(!str) return "";
    for(let i = 0; i < n; i++){
        str = str.slice(1) + str[0]
    }
    return str;
}
module.exports = {
    LeftRotateString : LeftRotateString
};