#2023_summer

1 messages · Page 131 of 1

jaunty cove
#

The first one?

frosty brook
#

why are people in @shy blade postings applying twice for a position? does that work lmfao

jaunty cove
#

nvm i thought u mena the one where every number appears twice except one

#

so u xor everything

#

was it literally just find duplicate nunbers

#

💀

#

unique*

#

Lmfao

#

And someone else got edit distance solved it and got rjeected

muted summit
#

was it just iterate through the matrix and you return all the values in the set? 💀

obsidian olive
#

i h8 dp

jaunty cove
#

they prob saw ur reusme and didnt need to know much more tbf

uneven sand
#

min stack on amazon final damn

#

it's not too hard but it's probably on the harder end for amazon intern interviews tbh

spark hearth
#

Can you teach me Edit Distance please? I am having a lot of trouble finding the solution.

#

Please don't react with skull emoji, it was a serious question.

sinful locust
#

when is google releasing apps lol

uneven sand
#

19

uneven sand
#

the trick for min stack isn't trivial especially compared to questions people usually get for amazon lol

spark hearth
#

Thank you, Andy Jassy.

clever grail
#

i see

spark hearth
#

Can you show me the solution? I just want to copy and paste it to my LeetCode and get it over with.

uneven sand
#

@spark hearth can you send me a google doc of your amazon lp stories

#

i just want to borrow it for my final

#

dw ill change the name

spark hearth
#

No, I cannot. That is academic dishonesty.

uneven sand
#

bro please

#

ill change the variable names as well

#

no shot they notice

jaunty cove
#

💀

spark hearth
# uneven sand bro please

https://www.youtube.com/watch?v=qWhV7dGbwTc
Watch this video for some tips in Amazon LP stories.

LIVE Leadership Coaching (MEMBERS-ONLY Amazon Q&A)
Amazon Leadership Principles + Storytelling EXAMPLES | Helping you land an Amazon Job Offer!
3:00 START
13:50 Branding (why it's important!)
15:30 Members-only emoji!
18:00 How to stay on top of your Recruiter
12:45 Interview Prep for every Amazon position...

▶ Play video
#

Thank you Andy Jassy.

uneven sand
#

andy jassy what is your tc

#

also how did you get promo from aws ceo to amazon ceo

#

im in a similar boat but i need some career guidance

#

oh

#

i went to yale so i might be sol

sinful locust
#

i went to yahkuba state school sadge

spark hearth
#

Dear Andy Jassy,
Can I ask a question about your LeetCode solution?
Thanks,
kyoyoberry

#

Dear Andy Jassy,
Please, it should be really quick.
Thank you,
kyoyoberry

#

Dear Andy Jassy,
Attached is the LeetCode solution you sent me. I am wondering what the first two if statements represent.
Thanks,
kyoyoberry

class Solution:
    def minDistance(self, word1: str, word2: str) -> int:
        @lru_cache(None)
        def dfs(i, j):
            if i == len(word1):
                return len(word2) - j
            if j == len(word2):
                return len(word1) - i
            if word1[i] == word2[j]:
                return dfs(i + 1, j + 1)
            insert = 1 + dfs(i, j + 1)
            delete = 1 + dfs(i + 1, j)
            replace = 1 + dfs(i + 1, j + 1)
            return min((insert, delete, replace))
        
        return dfs(0, 0)```
uneven sand
#

also why did you solve bottom up

#

that is cringe

#

isn't top down -

spark hearth
#

Dear Andy Jassy,
Thank you for responding so quickly. I now see what the first two if statement represents.
Thank you so much,
kyoyoberry

uneven sand
#
class Solution:
    def minDistance(self, word1: str, word2: str) -> int:
        @cache
        def dp(i, j):
            if i < 0 and j < 0:
                return 0
            if i < 0:
                return j + 1
            if j < 0:
                return i + 1
            
            ans = float('inf')
            if word1[i] == word2[j]:
                ans = min(ans, dp(i - 1, j - 1))
            ans = min(ans, 1 + dp(i - 1, j), 1 + dp(i, j - 1), 1 + dp(i-1, j-1))
            return ans
        return dp(len(word1) - 1, len(word2) - 1)
spark hearth
#

Dear ruhhoolnot,
I am not mocking anyone.
Sincerely,
kyoyoberry

uneven sand
#

yes

#

that makes sense

spark hearth
#

Dear yahkuba matada simp,
Why are you going backwards?
Thanks,
kyoyoberry

uneven sand
#

bc prefixes > suffixes

spark hearth
#

Dear yahkuba matada simp,
Please provide a rigorous proof to your claim.
Thanks,
kyoyoberry

uneven sand
#

"prefix" comes before "suffix" lexographically

#

QED

#

ok that's just false

#

using lru_cache is just begging to lose in code golf

spark hearth
#

Dear yahkuba matada simp,
You are very funny haha.
From,
kyoyoberry

tawny nimbus
#

jesus loves you all

#

go touch some grass

uneven sand
#

Dear kyoyoberry,
Go work on your Amazon project. It would be a shame to be PIPed on your first day.
Sincerely,
yahkuba matada simp

spark hearth
#

Dear under review,
What would touching grass do? It will just your hands dirty, so I would advice you all to not touch grass.
Thanks,
kyoyoberry

#

Dear yahkuba matada simp,
My internship starts tomorrow.
Thanks,
kyoyoberry

uneven sand
#

Dear under review,
Did you know that you can get cholera from touching grass?
Sincerely,
yahkuba matada simp

uneven sand
#

yahkuba matada simp

spark hearth
#

Dear yahkuba matada simp,
Excellent observation. After reviewing the Amazon Leadership Principles I now know what I must do.
Thank you,
kyoyoberry

#

Dear Andy Jassy,
It will first zip the data matrix is pointing to, then reverse it.
Thanks,
kyoyoberry

uneven sand
#

@inner kernel what exactly where you trying to do with that

jaunty cove
#

What happened to this guy

warped daggerBOT
#

ssi asks: ban goku

jaunty cove
#

Linkedin would be so cool if there was more trchnical discussion going on

#

Lmao

#

What does hn mean?

sinful locust
#

hey guys. has anyone applied for capital one? my workday says technical assessment, but i haven't received anything about a technical assessment anywhere. i applied on august 30th

spark hearth
#

rip

jaunty cove
#

you got blacklisted bro

sinful locust
#

Pain.

bleak storm
#

bruh, first time I ever scored this high in my life

jaunty cove
#

block hack

bleak storm
#

is it just bc block assessment is easy

jaunty cove
#

no its all the same

bleak storm
#

hopefully I can pass and get an interview

#

bc last time instabase still rejected my ass

jaunty cove
#

its just some weird thing where you can keep retaking the block one

bleak storm
#

ohhhhh

jaunty cove
#

without an invite froma company

bleak storm
#

oh okkk

#

I just found out this yesterday lmao, should have done way earlier

jaunty cove
#

Same lol

#

my score improved so much now

heavy meadow
#

hey dude, was this after the first HR (behavioral) round ?

#

I've had mine a few days ago and no response yet

#

:-(

#

yeah im sorry

#

i just looked at itF

opal kiln
#

ping

heavy meadow
#

F bruh

#

which location did you apply to? Amsterdam?

bleak storm
#

they also have a similar round for final interview, i screwed up and somehow still got the offer so i don't think it matters too much

heavy meadow
#

after how many days did they get back?

when i asked during the interview, the hr said we'll get back in one day, its been 4 now

opal kiln
#

how many rounds does roblox have?

#

after oa

#

what

#

for?

#

847

#

idk who u r

#

so I presume not

obsidian olive
#

meta internships are out ???

#

waterloo weird

#

but interesting . . .

honest aspen
#

Wait where u hear that

#

We still have no word on when headcount will be done or when return intern/ng offers for non-GE come out

#

If at all

#

Greatly exceeds expectations

obsidian olive
#

oh no

honest aspen
crisp berry
#

ok

#

hire me then

#

if you think that

obsidian olive
#

it wont

sinful locust
#

give me premium

crisp berry
#

give me ghc ticket

random apex
#

@daring totem hi

weak wadi
#

whoops wrong channel to send a meme in

quaint bolt
agile yew
#

yo wtf i got rejected from the jp morgan hackathon

#

i thought it would be easy to get in

#

maybe i got auto rejected because of international? because i applied to 3 things at jp morgan and all 3 rejected me at the same time

tough rain
random apex
oak kite
#

Sucks being international :/

zealous trail
hearty river
#

hi

quaint bolt
quaint bolt
#

JS and meta haven't posted yet sadge

zealous trail
#

wagons cant flex how goated he is yet

zealous trail
oak kite
quaint bolt
quaint bolt
oak kite
#

nah

#

How come?

quaint bolt
#

I was talking about our internal job board

oak kite
woeful lynx
#

Seven Eight Capital already filled all the positions 😅

soft basin
#

good luck!

zealous trail
#

nah bro im not selling u no-offer u got this

#

literally guaranteed

agile yew
#

i gotta change my major to something non-cs so the clout can come in useful for jobs back home though

random apex
hallow scroll
#

Cuz it’s hardcore behavioral

#

Unironically biggest screen in their process

ember thistle
#

brooo where is the meta intern app

bleak storm
#

hi yall, hypothetically: dropbox vs datadog?

soft basin
bleak storm
soft basin
#

that’s for google too

late terrace
bleak storm
#

Intern

#

My Dropbox offer is expiring in 2 weeks and I don’t think Datadog can lmk before that. Dropbox is also quite small so afraid to renege

late terrace
#

hmm it’s a tossup imo maybe slight lean towards dropbox

bleak storm
fleet tulip
#

Wtf shat the bed with db codesignal (721) and got phone kermit_think

late terrace
#

well for this is for intern right (or are u looking for ft return as well)

fleet tulip
woeful lynx
#

Does Tiktok offer visa sponsorship for interns?
Because all the listings contain the phrase:

Must obtain work authorization in country of employment at the time of hire, and maintain ongoing work authorization during employment

fleet tulip
#

Last week?

modern geyser
#

How long does salesforce take to revert back? Did anyone give any interview/oa for salesforce summer?

ember thistle
#

zuck said so

#

read in some article talkin bout company call

ember thistle
soft basin
#

no they haven’t

sinful locust
agile yew
hardy patrol
#

capital one recruiter still waiting to get back to me for powerday scheduling

#

1 week

soft basin
hardy patrol
#

rejected your rejection letter

#

ig theyre busy asf rn

soft basin
#

yeah all u can do is wait

dusk kayak
#

hmmm

#

i think i take riot OA soon

golden tusk
tawny nimbus
#

my recruiter said shed contact me last week about my location and offer D:

#

looks like every process is backed up

golden tusk
soft basin
#

my recruiter finally responded

woeful lynx
zealous trail
#

whens ur call

tawny nimbus
#

cap1

#

my amazon final hasnt been scheduled

hardy patrol
#

holy shit

#

im like entirely certain the headcounts going to be filled by the time i interview

soft basin
#

my cap one recruiter finally responded

#

abt the application withdrawal

hardy patrol
#

i applied the same month that my internship ended and thats still considered too late thats wild

soft basin
#

next time apply during 😈😈

crystal agate
#

you'll be fine - just had phone it was standard behavioral

late terrace
#

me everyday

sinful locust
#

free?

#

nice

safe minnow
#

Does zoox do sys design?

sinful locust
#

Is Pinterest oa auto

summer sequoia
#

is optiver oa auto? just got one now

#

applied on 8-23-22

late terrace
#

ye

lean pewter
jaunty cove
#

i coudltn see the pinterest intern positions cause i have pinterest blocked

ember thistle
#

ye how tf do they review those video responses so quickly?

#

I think they do resume screen after OA and online video interview

#

cause last year i got rejected quite literally the day after the online video interview

jaunty cove
#

yes

ember thistle
#

i cant tell if this a joke cuz trading firms are kinda insane wit how they analyze candidates

naive kayak
#

bro the nike application is so horrible

jaunty cove
#

are we talking about swe or trading

naive kayak
#

who even designed that

soft basin
#

no wonder why they are hiring interns

jaunty cove
#

its a learning experience sad_kermit

hardy patrol
#

cap1 got back to me saying yea hold on we're fucking busy

soft basin
#

make an ai model of hr 😳

autumn pelican
#

anyone have experience with akuna quant dev final?

frosty mulch
#

I negotiated citadel and they increased weekly from 3850 to 4800 damnnn

#

Still 10k signing

jaunty cove
#

jesus christ

devout jewel
#

holy fuck

#

@frosty mulch who did u negotiate with to get a boost ?

frosty mulch
#

The recruiter

tardy ridge
#

Microsoft?!

#

I didnt even sign up for any events with them

astral dew
#

Dear unavailable variable lmao

violet willow
#

Took amazon oa Friday and received this today.

#

Is this final?

astral dew
#

Yeah

violet willow
#

Oh thx

tardy ridge
#

Bruh all these people getting Amazon finals, while I still havent received an OA

#

L

tough ledge
#

amazon has been doing everything except sending an OA or rejecting 💀

woeful lynx
#

For summer or spring? Because I only see spring 😅

uneven sand
#

spring

#

summer apps not out yet

agile yew
#

IMC only takes final year students right?

uneven sand
#

if you're a senior rn, you should be applying for new grad

soft basin
#

^^

near swallow
#

Goated emote

opal ocean
#

any advice on akuna ML data Eng phone screen?

near swallow
near swallow
frank oxide
#

Algorithm Development Internship - Summer 2023
Hudson River Trading (New York, NY)
REQUIREMENTS
You are a full-time undergraduate, masters, or PhD student in a quantitative discipline (e.g. math, physics, computer science, statistics, or a related program).
You will be graduating and looking for full-time roles in 2024.
Experience programming in Python is a must; C++ is a plus for those interested in high-frequency trading.
Experience with statistical analysis, numerical programming, or machine learning in Python, R, or MATLAB.
A passion for applying quantitative models and technology toward solving real-world problems.
Strong communication skills.

#

Does this test OS ^

summer sequoia
tardy orbit
ocean relic
#

Wasn’t it just normal

tardy orbit
#

No its custom, not standard code signal

wooden shard
hallow scroll
#

thought it was standard cuz I definitely sent in an old score

late terrace
#

for swe yes

#

not algo dev

hallow scroll
#

ohh makes sense

frank oxide
#

wild

static spindle
#

is IMC oa auto?

#

darn

woeful lynx
#

Really? I got rejection email 1h after I applied 😅

jaunty cove
#

binary serach is on my list of OP data structures and algorithms now

#

i didnt appreciate it enoguh until now

crystal agate
#

Honestly wondering the same - I always see posts for them like “must be returning intern” or at some event and I always miss them lol

#

Smh

#

I wanna work @ slack

#

But can never get past lol

strong ember
#

Anyone did the Instabase OA? It says "please brush up on your frontend/full-stack coding with React and general coding with Javascript or Typescript."monkaS

near swallow
#

Kirb 350 has it

jaunty cove
#

Lol

#

and i got another really cool bsearch on codesginal a few days ago

jaunty cove
#

whats kirb350?

#

yea you got trolled

near swallow
#

Check the pinned messages here

#

Comprehensive one stop shop for LC

#

Aggregates everything

#
  • record keeping
jaunty cove
#

the colin davis 2300

late terrace
#

since when kirb 300 is 350

near swallow
#

Since v2

#

New patch

#

Gokugate 50 is just 50sum

hidden gust
#

when google...

#

the rumor said 9/12

#

uhhhhh

sinful locust
#

yo i got a survey for after taking amazon OA? do all ppl get it or only ppl that got rejected 🥰

turbid marten
#

@sinful locust did u interview for redfin yet

#

gl

devout fractal
#

is it me or is there sth wrong with the twitch OA?

#

it's fucking easy but im pretty sure there's some issue with coderpad

turbid marten
#

the 5th case right

#

wait

safe minnow
#

I mean there’s white space issues

turbid marten
#

white space

safe minnow
#

But if you clear that up it’s fine

devout fractal
#

bruh, I legit printed my hashmap strings and they were the same but not unique

turbid marten
#

watch for the white space

devout fractal
#

fuck

turbid marten
#

the inputs look like " 'hey' "

obsidian olive
turbid marten
#

yep

devout fractal
#

that's so dumb wtf

turbid marten
#

it almost got me

devout fractal
#

that was such a braindead OA and I legit didn't pass it

turbid marten
#

twitch?

#

damn

devout fractal
#

dang im just dumb then 😭

#

i legit didn't notice and I'd og "finished" it in 10 minutes

#

also my screen is cracked

#

like I can't see half my screen on my computer

#

so I can't properly see their input

opal kiln
#

Has anyone given video interview for IMC

limpid steeple
opal kiln
limpid steeple
obsidian olive
opal kiln
#

Was it on Workday?

limpid steeple
hardy patrol
#

how tough is imc

opal kiln
hardy patrol
#

lc meds right

limpid steeple
opal kiln
#

Bruh

opal kiln
limpid steeple
opal kiln
opal kiln
limpid steeple
opal kiln
#

Oh makes sense then

#

Also anyone given Roblox after OA?

jaunty cove
#

second one a little harder

opal kiln
jaunty cove
#

huh

#

you just had to translate what it asked into code

#

no implementation of algorithms to make it pass test cases in time or anything

opal kiln
#

It wasn’t lc easy tho

#

Maybe we had dif questions??

#

Yeah

#

Like it wasn’t trivial

wooden shard
#

can I see your resume as well

jaunty cove
#

i guess your right

#

but i would say most mediums are harder than that

opal kiln
#

Yeah ig

hardy patrol
#

crazy

jaunty cove
#

yes because

#

they screen hard as fck after that

#

its not relly an assessment they prob just wanna filter out people who cant code

devout fractal
#

bruh im legit so mad at myself abt twitch OA, literally easiest OA this season so far

#

like i straight up had a LC med version of it for my amzn OA which I passed all on

#

whatever ig

jaunty cove
#

they didnt even give me the OA

#

very rude

safe minnow
devout fractal
jaunty cove
#

what do u mean by can you code vs leetcode

placid pelican
safe minnow
#

How does one screen for that on a resume?

devout fractal
safe minnow
#

Oh

devout fractal
#

and I haven't gotten resume rejected so far this season I've applied to a lot of places, so i feel like my resume is good enough, esp as junior

devout jewel
#

bro how is everyone getting callbacks

#

I’m not getting shit rn

#

I got less callbacks than last yr

placid pelican
devout jewel
#

Without apple

#

Bruh

jaunty cove
#

imo that is still a test of how good u are at leetcode

placid pelican
#

but its good to have hope

devout fractal
#

yah, im an EE anyway

#

my main area is firmware/embedded swe

jaunty cove
#

maybe idk what im talking about

placid pelican
#

ig

#

yea its a lil crazy

zealous trail
placid pelican
#

recession fucked us

#

i have jpmc and im not getting shit

slow quarry
placid pelican
#

so sad

devout fractal
#

is jpmc big clout for swe?

#

but yeah, this season is so bad bro

#

it's such a bloodbath and it's only sept

placid pelican
devout fractal
#

bezos would be a savior if they'd actually schedule my final

placid pelican
#

like what else could u have thats a step down from faang thats better than jpmc? maybe c1?

safe minnow
#

🗿

devout fractal
#

unicorns > faang

#

they straight up have higher hiring bars

placid pelican
#

amazon is faang

slow quarry
#

Big tech over unicorns easily for resume value

devout fractal
#

but isn't the pipeline usually F500 -> Faang -> Unicorn?

safe minnow
sinful locust
#

@pale cargo poppa

slow quarry
uneven sand
hallow scroll
#

EXCEPT FIGMA

uneven sand
#

that's like free 50k

hallow scroll
#

GIVE ME FIGMA

slow quarry
jaunty cove
#

imc is low tier 😂

uneven sand
#

linkedin, ddog, amazon, akuna, drw prayge

devout fractal
#

cracked screen, so couldn't see the whitespace in their inputs

uneven sand
#

on g

slow quarry
jaunty cove
#

i doubt it

placid pelican
jaunty cove
#

wouldnt recruiters know how easy it is to pass the process

#

compared to unicorns

slow quarry
static spindle
jaunty cove
#

are recruiters really unaware of how other companies hiring processes are

slow quarry
slow quarry
#

400+ lc in Java

jaunty cove
#

💀

slow quarry
uneven sand
#

im still waiting after 1 week

#

after phone tho

jaunty cove
uneven sand
#

damn

#

also what is up with drw

#

nobody has gotten final tf

safe minnow
#

Would you learn more at unicorns or faang, or is it not possible to generalize?

uneven sand
#

at least on this server

#

not possible to generalize

uneven sand
#

faang probably has better engineering practices on average but you'd probably have more chances of impact at unicorns

static spindle
uneven sand
#

this too

static spindle
#

more likely to be more boring though

uneven sand
#

there's teams that just do maintenance work

#

it depends

static spindle
#

big if think

placid pelican
#

u might learn more stuff horizontally in unicorns, and more vertically in faang

obsidian olive
#

Y the hell do I keep hearing that the snowflake OA is brutal

uneven sand
#

you just need to find the teams working on new stuff

#

which there are plenty of

jaunty cove
#

cause it is

placid pelican
#

i.e. wear more hats and do multiple roles whereas in faang u can do something specialized

uneven sand
#

but there's also plenty of teams maintaining old stuff

sinful locust
#

I just get basic shit no fulltimers wanted to do

outer sapphire
#

Is Amazon OA easy?

static spindle
outer sapphire
#

Just got it

safe minnow
#

Also, is it difficult to go from unicorn to faang later on?

uneven sand
#

also keep in mind unicorns are still big in their own right

jaunty cove
#

its random

uneven sand
#

unicorns aren't 20 person startups lol

static spindle
uneven sand
#

amazon oa is rng but if you can do lc mediums, you'll be fine

placid pelican
#

idk tho

#

^

outer sapphire
#

lol

sinful locust
#

How long to hear back after stripe oa?

#

Its literally bot graded

uneven sand
#

yea stripe is going to feel a lot more like big tech

#

shit's worth 75 billion lol

#

is that a cat

north portal
#

u never know when the recruiters are looking

#

gotta show the dedication lol

uneven sand
#

im a stripe recruiter btw

#

im sending sushi oa rn

devout fractal
#

i no longer simp, they just need to pay me

#

i will simp if i get offer

sinful locust
sinful locust
near swallow
devout fractal
#

no

north portal
#

no

#

capital one finally gave me my interview date but its in december

safe minnow
#

💀

devout fractal
safe minnow
devout fractal
#

this is what i heard from amzn

north portal
safe minnow
north portal
#

i actually followed up with another recruiter

#

and she actually checked on my application

#

and my recruiter responded

#

after like 2 weeks of silence

north portal
naive kayak
north portal
#

not me applying to notion after getting a rejection email

safe minnow
naive kayak
#

do u know if msft merge accounts?

north portal
#

oof, email recruiter?

devout fractal
#

I got final invite on aug 2nd LMAO

naive kayak
#

new phone nunber is gonna be tricky

naive kayak
north portal
placid pelican
#

use burner phone

sick oar
#

sames

devout fractal
#

they said it'd take like a month or two until final

sick oar
#

how long ago did u have urs

naive kayak
sick oar
#

eh thats not ghost

#

i had mine like a week ago

devout fractal
#

yah wait a few weeks

north portal
#

^

devout fractal
#

what company sushi

#

bruh

placid pelican
#

app

#

i use it when im trapping

north portal
#

man

#

amazon really got me making up rejection scenarios in my head

static spindle
#

You already got final invite but no date set?

north portal
#

ye

sick oar
#

i want my msft finallLLLll

north portal
#

yea its possible

#

unlikely tho, i think u should get like at least 2-3 days heads up

placid pelican
#

@north portal karma police

#

W

north portal
#

love radiohead

placid pelican
#

Based

#

All these radios but still no head 😞

north portal
#

let a man dream

static spindle
#

that’s odd though, I got my final scheduled within a week of receiving invite

north portal
#

its been almost a full month

#

everytime i follow up i simply get automated message saying to be patient

celest bane
#

What was so hard ab snowflake oa?

#

I’m ab to take it

placid pelican
#

Just be hard

north portal
#

idk

#

i havent taken mine yet

#

i got it today

sinful locust
#

i did my linkedin oa this weekend

#

i got 100%

north portal
#

nice

sinful locust
#

will i get a call back or not

hallow scroll
#

No

#

It’s like 3 dp hards

sinful locust
celest bane
#

Lol time to fail

sinful locust
#

are they ghosting me?

celest bane
#

Let’s gooo

sinful locust
#

why haven't they gotten back to me

near swallow
sinful locust
#

ITS BEEN 2 DAYS

#

recruiters dont work over the weekends

#

?

#

WHY

hallow scroll
#

They’re ghosting you

#

They’re ghosting everyone

sinful locust
hallow scroll
#

They’re really backed up rn

sinful locust
#

BUT IM THE PERFECT MF FOR THEM

hallow scroll
#

It’s been like 2 weeks since my phone 💀

sinful locust
#

bruh

near swallow
#

No sexual jokes here. Next time is ban

sinful locust
#

damn

north portal
#

my expectations are plunging man, ill literally work for free at this point, just give me something

placid pelican
hallow scroll
#

Gl

north portal
#

2023 season really be 7 rejections, 4 interviews, 0 offers

hallow scroll
#

Hopefully figma will reply today okayge

sinful locust
#

figma is pre good

sick oar
#

ugh

sinful locust
#

their culture seems pre based

hallow scroll
#

Yes

#

I’d take figma over google or LinkedIn no cap

hallow scroll
sinful locust
#

@hallow scroll did u get to pltr's final round?

hallow scroll
sinful locust
#

LMAO

#

so based

#

why

north portal
#

how good is capital one overall

#

right now i only have fidelity

hallow scroll
#

Cuz I didn’t wanna interview with them

north portal
#

so im looking to go up

sinful locust
hallow scroll
#

Cuz they’re the best

#

Simply put

#

The best

sinful locust
#

id take figma over big G too

#

the product they're building is better

#

its actually interesting

north portal
#

this

sinful locust
#

no figma is also pre good

#

the mfs who need to know figma know figma

hallow scroll
#

I don’t need resume value so I want figma

#

Gimme figma

sinful locust
#

doubt it

hallow scroll
#

I need that ipo money

frank knoll
#

I failed Figma on the coding piece cause I was having technical difficulties

hallow scroll
#

Series z funding coming soon prayge

#

Yes

#

I go to no name but their resume screen is still harsh

sinful locust
#

are we gonna mod by 26 once we get passed series z?

#

or are we gonna move into greek letters?

hallow scroll
#

Bankruptcy 👍

sinful locust
#

a-z -> a-z again or a-z -> greek

sinful locust
frank knoll
#

I’m not even gonna do figma next year cause their test was so stupid for me

hallow scroll
#

Oh did you fail the oa?

placid pelican
#

What u kinda company requires that many rounds of@funding

frank knoll
#

Yeah I was having a ton of technical difficulties like it freezing and stuff

hallow scroll
#

Yeah the oa thing was wack

#

Rip

#

No

frank knoll
#

How did you pass bro @hallow scroll

#

I’d rather do leetcode🫠

hallow scroll
#

Idk I did pretty bad too 😭😭

#

Yes and I also have 2 other pretty good names lol

frank knoll
#

I go to a no name school and for some reason I got reached out to by Google

hallow scroll
#

Yeah school starts to not matter

frank knoll
#

projects >>>>>

hallow scroll
#

💯

frank knoll
#

I coded an app and it’s on the App Store😵‍💫

#

Pls download

#

Nah I’m an Asian woman

#

If that counts?

#

lol

#

yeah I got an internship through ghc

#

Big bless

hallow scroll
#

Minorities wooooo

sick oar
#

pltr 2nd round in 10 mins lmaooo

sinful locust
#

Im minority wheres my internship or phone at least

devout fractal
#

has zoox sent out OAs yet?

sinful locust
#

For some reason my schools google recruiter only reached out last year not this or any year before junior
Then i said i wanted security and would reach out later. She said ok but when I emailed when security opened she never responded

devout fractal
#

has rivian sent out OAs yet?

near swallow
#

Good tech recruiters will recognize figma’s value

hallow scroll
#

Yeah I agree

near swallow
#

Have you seen the demographics on linkedin of figma vs G

#

They’re all handsome at figma ofc

hallow scroll
#

If you wanna learn more which for me at least is a big factor figma > google

#

Mod abuse

stable shell
#

linkedin recruiter asked me if im interested in summer and now i got final scheduled for summer wheres my winter WazowskiStare

devout jewel
#

I’m kinda ugly

sinful locust
#

does mongodb sponsor

near swallow
#

Yeah that’s why

devout jewel
#

damn

#

must focus on being sexy like juda

#

instead of lc

#

No I

#

I’m nothing compared to u

near swallow
#

There are two people u should never compare yourself to because they are perfect

#

@gentle latch @quaint bolt

hallow scroll
safe minnow
#

What does the frequency number exactly mean on the vercel app?

uneven sand
#

how often it was asked (according to lc)

safe minnow
#

Yeah, but let's say it shows 1.13

#

Does that mean it's asked in 1 out of 1.13 interviews?

#

So 88%?

#

I'm just trying to figure out if the smaller numbers are the ones I should be grinding or the bigger ones 😅

near swallow
#

It means if 100 people did an interview, 1 adult would get it asked and also one small child would get asked

#

Honestly idk, i think it’s just how averages work

thorny wharf
#

is it better to schedule my final interview a week from now or 4 weeks from now for a faang-level company? sooner means less spots have filled up but later would give me more time to leetcode, even though i'm relatively comfortable rn

safe minnow
#

What's wrong with this problem

true glade
#

JUDA

true glade
#

you say the same thing everytime

south oak
#

my goldman status changed from hacccer rank completed to interview completed does this mean I am rejects?

hardy patrol
#

goldman needs school transcripts right

south oak
#

I remember uploading an unofficial transcript

hardy patrol
#

wack

#

i want to see the golman recruiters face when he checks my transcripts to see a negative gpa

golden tusk
#

We're not goated as you pepeflushed

placid pelican
#

:0

wooden shard
#

How do u find out about these sessions?

static spindle
#

maybe i should start putting my lichess rating on my resume

golden tusk
#

These ppl gunning for top internships depressedcat

#

How to compete

#

No wonder bridgewater ghosting

static spindle
#

i have an unusual hat in tf2, does that count?

safe minnow
#

What if you're challenger in league PepeLaugh

#

🤔

#

Put down you made it to 1000th candy crush level

clever grail
#

@ endorsi

#

yes

wise laurel
#

I received this today.

sick oar
#

done w palantir

#

holy

hardy patrol
#

nothin on the zon

zealous trail
#

That’s why they downvote it then

zealous trail
violet kelp
#

is samsara OA automated?

obsidian olive
obsidian olive
woeful lynx
zealous trail
woeful lynx
violet kelp
violet kelp
obsidian olive
sullen grail
#

Is pinterest codesignal?

signal rock
#

Does anyone need a GHC academic in person ticket?

obsidian olive
#

Ooo that’s cool

brave mauve
#

anyone do state farm oa (hirevue)?

obsidian olive
agile yew
uneven sand
#

i got rejected sadge

sinful locust
#

damn wtf

#

sorry to hear

#

hard sys design?

uneven sand
#

sys design wasn't too hard but also i've never done a sys design interview lol

sinful locust
#

fair

uneven sand
#

prayge drw and akuna stop ghosting me

sinful locust
#

they suck at responding

uneven sand
#

yea lol

sinful locust
#

its been 3 wks since my final

uneven sand
#

damn wtf

hallow scroll
uneven sand
#

it's been 1 week since akuna phone and 3 weeks since drw phone

#

these mfs are worse than google

sinful locust
#

i have optiver on wedesnday and if its networking im screwed

sinful locust
#

us

sinful locust
#

networking / os / sys design

#

concepts

agile yew
#

Like technical networking or irl networking

#

Ok.. good

woeful lynx
uneven sand
#

baller is too op

sinful locust
#

now i have to read grokking in 2 days

woeful lynx
woeful lynx
sinful locust
mossy compass
#

does dropbox send application confirmation? dogesmile page just scrolls to the top and nothing seems wrong with my info

woeful lynx
agile yew
#

i have received nothing from any company bruh

#

what am i doing wrong

woeful lynx
#

Yeah! That’s the spirit 😂

sinful locust
#

same

#

delayed sadness for me

safe minnow
#

Did you pick the guy or the girl

vapid pecan
#

Bloomberg is coming to my school next week, should I apply before meeting w/ the recruiter or after?

safe minnow
#

LOL

uneven sand
#

when bloomberg came to my school they just gave me a qr code to upload my resume to

vapid pecan
#

F

#

thanks for the info tho

#

ill wait until I meet with them

#

glgl

#

bloomberg is the only large company that comes to my school ):

agile yew
#

gap the clothes company??

#

wtf

#

reserve bank of ireland?

slow quarry
#

Uchicago

agile yew
#

i thought you have a jane street internship bruh, how is that no name

#

ohh i see

#

rankings are bs

uneven sand
#

copium

agile yew
#

i go to a high ranked school and im pretty sure they rig the shit out of that

uneven sand
#

cum dropped to 2 KEKW

agile yew
#

it doesnt mean anything, clearly isnt helping me 🤣

#

i met some guy who went to the T1 university in my country, he had to go back to his home country because he had no job and was homeless lmao

#

no i imagine its much worse in india

#

bro ur missnig all their stats 🤣

#

its so fckng intimidating

#

mans are listing 99.9999% JEE on their resume

#

and i heard thats one of the mots difficult exams in the world

uneven sand
#

cringe

#

ken griffin knows the true value of sat/act

agile yew
#

only thing ken griffin knows is tax evasion

#

imagine moving a quant firm ....... to miami ............................

uneven sand
#

jane street interview is easier than amazon imo

#

i got lc, oop (but closer to lc), sys design

#

yea sys design was kinda rough bc i've never done a sys design interview before lol

#

seems like they're doing it now bc ik someone who did final today and also got sys design round

#

no

woeful lynx
#

Even leetcode is wild but you gotta do what they want to get that spicy offer 😦

uneven sand
#

yea sys design on the spot is tuff

#

figma has sys design on final?

#

damn

sinful locust
#

wtf is usn news

uneven sand
#

us news is the gospel for college rankings

sinful locust
#

sorry not a virgin

true glade
#

what

#

excuse me?

uneven sand
#

wtf

sinful locust
#

what

true glade
#

this after negotiation?

uneven sand
#

damn i missed out

sinful locust
#

next year youre gonna be goated at sys design

celest bane
#

Stfu @honest spire

uneven sand
#

yea but next year im recruiting ng

#

citadel ft is monkaS

#

it's not even mine

#

i stole it

sinful locust
#

you have opt too?

grand bane
#

$50/hr is prestigious

sinful locust
#

this is enough

#

more than

#

bruh

grand bane
true glade
#

.

sinful locust
#

pplt out here dying to get 15$ per hour ft, not in cs but still

#

doxxed

#

i sent a connection request

true glade
#

mit bad

sinful locust
#

@sinful locust mit cringe

#

leave

#

CMU sucks

#

COPE

#

UCSD T15 mama i made it

#

bruhhh

#

oh

#

graduate school

#

nvm

uneven sand
#

ucsd t20

#

t15 doesn't exist

sinful locust
hallow copper
#

datadog oa automatic? applied with no response

uneven sand
#

no

hallow copper
#

:( interviewed last year they must hate me now

uneven sand
#

it took forever for me to get oa

#

i applied twice and it still took 2 weeks after second application

hallow copper
#

how long? I applied like 2 weeks

true glade
#

@inner kernel can i dm

uneven sand
#

i applied twice

hallow copper
#

did u change anything

uneven sand
#

no

sinful locust
uneven sand
#

i just created a new ripplematch account and entered the same things

sinful locust
#

idk what that is

uneven sand
#

Drppbox

#

lol my school is on the first list

#

but not on the second (which is adjusted for school size)

sinful locust
#

be the change u want to see

agile yew
#

flawed list

#

education quality >>>>>>>>>>>>>> job outcome

#

a job is for a set number of years, education is for a lifetime

sinful locust
#

ppl say that then sacrifice grades for leetcode

agile yew
#

i dont do that

#

i sacrifice leetcode for grades like a clown

#

Depends on ur school and major

sinful locust
#

so ur going to grad school is what you're saying @agile yew

agile yew
#

thats not rlly how my scohol works for example

sinful locust
#

i'm cs x math

agile yew
#

eveyrone fucking cheats in cs classes at my school

white urchin
#

is samsara oa auto?

agile yew
#

i hate myself for not being chinese to be honest

#

because i cant make friends with the chinese kids

sinful locust
#

tf being chinese gotta do with anything

agile yew
sinful locust
#

just talk to them 😭

agile yew
#

our prof caught them last time 🤣

#

yeha dude the chinese TAs have been sharing exams with some students for a price

#

its fucked

sinful locust
#

true let me apply to HRT

#

my mental math is fucked i'm kidding they ask me do 43 * 374 i'm gonna stare at the ceiling like an idiot

ember thistle
#

do salesforce referrals matter?

sinful locust
#

i will learn rust within the next 3 months ive been slacking]

sinful locust
#

(hrt)

#

its more of trading positions

#

and no one will ask 374 * 43

#

i did get 3 decimal places addition once

sinful locust
#

sadge look forward to the next one

#

ood is wack

#

@wise ferry yo

#

did you get any hft offer / final?

#

ah ok

#

well thats better

#

LOL

#

WTF

#

LOL

#

sorry

#

what type of clarifications do you ask

#

idk how a package manager works

#

its not some commonly known thing

#

design a package manager..

#

LMAO

#

oh wait is it a actual package manager for a facility?

#

or is it code

#

actually thinking ab it that wouldnt be too hard

#

oh lol

#

i thought its the pip thing

#

i guess you need some hashmaps and stuff

#

thats fucked

echo lynx
#

Hey ma people.

#

Quick question.

#

Which companies do you guys think has more brand recognition in the software industry between Uber and LinkedIn?

echo lynx
#

Oh no, just general knowledge kinda thing.

obsidian olive
lofty bluff
soft basin
#

i got somethin wiht a login system

#

for oa

obsidian olive
obsidian olive
soft basin
lofty bluff
#

its AND in discrete but yea it's XOR in programming

soft basin
#

im so glad they gave me now that i think abt it

#

bitwise xor is ^

obsidian olive
#

some bitwise nerd is about to go off on u

#

does anyone know how to apply to amazon wit referral?

real eagle
#

gotta flex having a work life balance on him

obsidian olive
#

mfs who short stock and destroy businesses

echo lynx
#

Thanks a lot.

obsidian olive
#

ppl who have a default discord pfp im convinced arent real

#

they just bots

soft basin
#

sushi would like a word

sick oar
#

i work less than @sinful locust

#

thats my flex

lofty bluff
#

no

#

xor is

obsidian olive
lofty bluff
#

no difference but the symbol is different

obsidian olive
#

is that ur actual face

lofty bluff
#

^ means AND

#

yes

#

did you take discrete structures

lofty bluff
#

no one can beat goku in this room 😎

unreal pollen
#

Was it for intern?

woeful lynx
#

Hahaha if he doesn’t want it I take it 🤷🏽‍♂️

#

The answer is: 42 = P = NP = ExpTime

agile yew
#

Idk why a quant would need diff geometry

tawdry mist
#

Lmao

woeful lynx
#

I miss Group Theory 🥲 had it the last time in my first semester of bac… the only word I remember is homomorphism 😂

#

Hahaha if you prove this you will be headhunted from Rentech 😂

coarse vigil
#

Rip

tough obsidian
#

anyone done this year's databricks phone yet? what kinda probs can i expect

#

wuh

#

i was expecting hards

lapis totem
#

I didn't get anything

#

When did u interview?

naive kayak
#

gave oa last monday, nothing yet either

#

2 weeks if im not wrong

lapis totem
#

OA kinda rng It took me a month to get mine

#

Yea doesn't matter for intern

lusty osprey
#

hey how did your DE shaw interview process go?

hardy patrol
#

how hard is ibm oa i heard it was like 3 sections of completely different things

#

iirc multiple choice, then some html you fill in, then lc (?)

true glade
#

pure math 👎

coarse marten
#

I passed G but failed ibm

honest locust
#

js phone for swe was a dub today

#

no introduction,went straight to the programming part

coarse marten
#

Lmao

honest locust
#

3 parts

#

part 3 built on parts 1 and 2

steep cypress
#

my recruiter said this is true, I did really shitty on my recruiter interview and did good on my karat and failed lol

honest locust
#

part 2 was indep of part 1

coarse marten
#

Lld?

hardy patrol
#

bruh you did that shit over the phone

honest locust
#

lc medium roughly

#

all O(n) algorithms

elfin peak
#

Does LC tagged help for Amazon?