Hello Community,
105 min total, 2 questions to code on HackerRank:
...A few minutes of waiting while page loads outside HackerRank...
Best of luck everyone!
I will try to update if/when I get news.
function updatePostOnLeetcode(news, step) {
if (news === "Moving to a new step!") {
return "Yay, community, they move forward with my application to a: " + step;
} else {
return "Still waiting...";
}
}
updatePostOnLeetcode(null, null);
> Still waiting...
updatePostOnLeetcode("Moving to a new step!", "virtual onsite");
> Yay, community, they move forward with my application to a: " + virtual onsite;