>you may complete the assessment in an ide of your choice and copy paste the answer
>already did the 50 leetcodes the platform offers that cover the stuff on it's assessments supposedly
>won't have to memorize shit like N / gcd(N,M) for when will it loop or that the sieve of erasteatheres is
for (let i = 2; i * i <= N; i++) {
if (isPrime[i]) {
for (let j = i * i; j <= N; j += i) {
isPrime[j] = false;
}
}
}
This might actually be it bros. I might actually make it and get a job and move out and have sex if I don't get rapemurdered first while living out of my car until I got enough pay stubs for an apartment.
>you should be able to just invent those things yourself when given a prompt that requires it
fuck you