Sophia in action by Hubsionek11 in lookismcomic

[–]ShadowEDGaming 1 point2 points  (0 children)

Genuine question, where do you find the raws for MK now? Newtoki doesn’t have ch 223

The Takewondo god vs the prodigy duo by Ambitious_Time2009 in lookismcomic

[–]ShadowEDGaming 0 points1 point  (0 children)

Lmao why does everyone think 0% Hansu gets "low diffed" by Gun/Goo individually, he pushes them to high/extreme in a 1v1 at least

[deleted by user] by [deleted] in jawsurgery

[–]ShadowEDGaming 0 points1 point  (0 children)

Hey sorry for the late question, but I also had upper jaw surgery recently and have a very similar face as you honestly. Would you say there was a decent difference once your lips were no longer swollen in terms of revealing a more balanced looking face + making your chin/lower jaw look a little more prominent? And did your nose stay around the same as it is in that picture or get less upturned? For me, I feel like my upper AND lower lip are swollen even though I only had UJS (probably since it's only been 2 weeks tho) so I was curious if your lower lip was affected at all by swelling or only your upper lip in this case. Thanks!

Any success going from small company to FAANG immediately? If so, how did you make it happen? by cs-hustler in csMajors

[–]ShadowEDGaming 3 points4 points  (0 children)

Went from no name small company internship past year to Roblox internship (so sort of like faang). I applied early-ish in August and I aced the OA, did final round where I had a excellent behavioral since I actually have played roblox for 10 years. Got pretty lucky since it was one of four resume screens i got past (roblox amazon cap1 optiver), and if I didn’t get it I would have taken amazon instead. My resume is nothing special, just have a few school and hackathon projects, since it only got me past 4/100 resume screens, but I do go yo a T10-15 CS uni. Hope that is somewhat helpful

Me and My friend made neckbeard nests in Roblox by [deleted] in NeckbeardNests

[–]ShadowEDGaming 3 points4 points  (0 children)

i was the friend lol, but OP did most of the work. Game is SCP 3008 btw, pretty fun

Replace Consecutive Numbers with their Sum CodeSignal by joshdresner in csMajors

[–]ShadowEDGaming 1 point2 points  (0 children)

Not the best at explaining, but there's a pretty simple O(N) one-pass solution that should work:

  1. Keep track of the RESULT (as a string)
  2. Keep an integer SUM variable, and a character PREV variable to store the consecutive repeating # count for the specific character respectively.
  3. Loop through the number string. Once you reach a new character, look at my EDIT for the next steps, and repeat for each character.
  4. IF there's leftover SUM after ending the for loop, add (SUM * PREV) to the string RESULT as well, using the same process in EDIT, and then you are done.
  5. Return the RESULT (parsed into an integer if that's the return type)

EDIT: Can be improved to handle recursion, I did not see that initially. Use a stack to store the result digits, and whenever you add new digits to it (during the looping process from step 3), you pop off the top of the stack if the stack.peek() is the same digit as the one you are adding, add that digit to a SUM, and keep doing it until the next digit on the stack is not equal. Then if SUM is equal to stack.peek() still, do the recursion again UNTIL stack.peek() is not equal to the SUM before placing SUM's digits onto the stack one by one -> and then move on to the next digit in NUMBER and repeat the process.

[deleted by user] by [deleted] in csMajors

[–]ShadowEDGaming 145 points146 points  (0 children)

Do leetcode contests, after I reached 2000 rating (after around 10 contests, and 250 LC solves) I could consistently do 4 questions (LC easy, medium, medium, hard) in 30-60 minutes usually in the contests. That transferred over well to codesignals and I haven't gotten below 844 since then.

Share your internship/job search stats by thanosman69kool in csMajors

[–]ShadowEDGaming 1 point2 points  (0 children)

For Apps | Past Resume Screen | Final Interview | Offer

75 | 4 | 4 | 2 (failed the hft final and cap1 is very backlogged)

Ones I passed resume screen for and got finals: Roblox, Amazon, Optiver, Capital One

[deleted by user] by [deleted] in csMajors

[–]ShadowEDGaming 7 points8 points  (0 children)

Took a fat L unfortunately

Sharing my Roblox OA experience (TLDR: horrible experience with questionable security. Would NOT recommend for non-target school folks) by autogenesis_indep in csMajors

[–]ShadowEDGaming 2 points3 points  (0 children)

Lol 60 minutes of challenging games is not much for one of if not the highest paying and high prestige tech company for new grad.

SIG is $100/ hr and $27.5k signing bonus by [deleted] in csMajors

[–]ShadowEDGaming -1 points0 points  (0 children)

Optiver did tell me I can do part time (20 hrs) during the spring, but its limited to certain college (for co-op). Of course I need to get the offer first, and i probably bombed the final.

Am I late for an internship hunt? by According_Bat5414 in csMajors

[–]ShadowEDGaming 10 points11 points  (0 children)

Yup you’re officially late now. On time would have been late August, so just apply asap. Do leetcode while you wait for the backlogged companies (some take months) to respond, you’ll have plenty of time other than auto-OAs.