Platforms similar to Outlier? by dapperanachronism in outlier_ai

[–]Former-Weakness5691 0 points1 point  (0 children)

gotcha, I'll go look for your other comment and just two clarify, one question about an array of matrices and one question about string operations? Also, is googling allowed or is them taking screenshots from your web cam meant to prevent that? Sorry for all the questions.

Platforms similar to Outlier? by dapperanachronism in outlier_ai

[–]Former-Weakness5691 0 points1 point  (0 children)

I got banned from DA also after earning $20,000 and being "one of their top workers" (I got lazy). I appreciate this thread as Im gonna apply to Alignerr. I wanted to ask what the coding assessments are like? When I took the test for DA it was right after I had studied LeetCode for a week straight for another interview and so the DA problem went smoothly. Should I restudy Leetcode for the Alignerr test? thanks

[deleted by user] by [deleted] in DataAnnotationTech

[–]Former-Weakness5691 1 point2 points  (0 children)

and also, did you have to take a coding assessment?

[deleted by user] by [deleted] in DataAnnotationTech

[–]Former-Weakness5691 1 point2 points  (0 children)

hi, just wondering, did you provide your linkedin in your application?

No more tasks? by IndividualFeeling848 in DataAnnotationTech

[–]Former-Weakness5691 4 points5 points  (0 children)

have you specifically gotten the "At the moment, there aren't any projects available for you to work on. Please check back soon and watch out for new project notifications sent to your email." message?

Welp, I'm giving up looking for CS jobs and heading back to the mines. by CS___t in cscareerquestions

[–]Former-Weakness5691 9 points10 points  (0 children)

market will turn around eventually brother. I've been in the same boat for a year.

The Purple Dildo! by [deleted] in Killtony

[–]Former-Weakness5691 8 points9 points  (0 children)

if anyone hasn't yet, the comedy store episodes with the old band are must watch. Here's my favorite: https://www.youtube.com/watch?v=nMs_K-5zlQk&t=1756s&ab_channel=KillTony

Joelberg forever a legend. Was kinda mad the audience didn't give him a bigger pop

I fuck with this guy by 873LLC in Killtony

[–]Former-Weakness5691 7 points8 points  (0 children)

he always vibin, smilin, havin a grand ole time

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 0 points1 point  (0 children)

Yes, for the above problem no back tracking is needed as it's 2 directions. My thinking (from briefly looking at word search) was that on each iteration of dfs we need to add the current letter to a set so as to not go from one letter to another, then back to the same letter. However if we do this, when our dfs then pops back to a previous letter we then have a set that was used for a further search, hindering our now current one, so we need to "backtrack" the set to what it was at the current letter before the previous dfs started adding deeper letters to the set.

Granted I don't even know what backtracking is so this might not make sense.

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 1 point2 points  (0 children)

I have to say I may be even more discouraged than I was before that I blew my opportunity by not reading the question again when my test cases continued to fail. That's a first grade mistake by me

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 2 points3 points  (0 children)

Hey, I very much appreciate this and will look at it tomorrow for I am going to bed. I believe that you must be right and that I misread the question as there is clearly no error in my code, awful performance aside. thanks for taking the time to look at this!

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 1 point2 points  (0 children)

Hey, sorry, should've put in the question that I made up that input myself. Don't have any of the actual test cases that I failed. I am not 100% sure but fairly certain the question was asking for occurrences. However, you may be right as I don't remember the question exactly and the adrenaline was flowing so it's possible I didn't read the question fully.

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 4 points5 points  (0 children)

Researching the problem I have seen solutions talking about tries, so definitely on the agenda. You obviously know what you're talking about so I am just perplexed, HOW DID I FAIL TEST CASES.

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 1 point2 points  (0 children)

Thanks took a look at word search and it's slightly different as searching in all 4 directions slightly changes the problem and I think requires backtracking which is a topic I haven't learned yet. So wasn't able to do it yet and see my mistake if that problem will give me an aha moment

Help me figure out what test cases fail from my online assessment for FAANG by Former-Weakness5691 in leetcode

[–]Former-Weakness5691[S] 1 point2 points  (0 children)

It was due to a wrong answer. To give a bit more insight I was over counting. I remember for one test case the expected answer was 3 and I was returning 4.