function LeftRotateString(str, n)
{
    // write code here
    if(str === null) return "";
    let arr = str.split('');
    while(n) {
        arr.push(arr.shift())
        n--
    }
    return arr.join('')
}
module.exports = {
    LeftRotateString : LeftRotateString
};