#2023_summer

1 messages · Page 62 of 1

tawny nimbus
#

but i got expedited to final

#

discovery day

vernal furnace
#

speaking of dp problems I remember getting this problem on an OA before but I wasn't able to solve it, anyone have any ideas on what a possible solution approach would look like: "maximum subarray for max size k"? my idea was the standard kadane's algo for "max subarray" LC question and then try and decrement the window size when u reach size k

tawny nimbus
#

ur gonna have to provide more context than that

sinful locust
#

UNDER REVIEW

soft basin
#

thats not dp bruv

vernal furnace
#

subarray length <= k

soft basin
#

thats just simple sliding window

tawny nimbus
#

oh maximum sum

#

u just subtract left add right

#

O(n)

soft basin
#

O(nk) is brute force

#

and O(n) is optimal

vernal furnace
#

but can't u theorectically decrement the subarray to get a max subarray smaller than size k?

tawny nimbus
#

just start with size k

#

and as u move the window over

#

subtract left

#

add right

#

until u get to the end

#

o(n)

sinful locust
#

2 dollars i get portal update today

vernal furnace
tawny nimbus
#

u prob had some small errors

vernal furnace
tawny nimbus
#

someone correct me if im wrong

#

its not kadanes algo

#

kadanes algo is for max subsequence

vernal furnace
soft basin
#

if no subarray of size k then its kadanes

tawny nimbus
#

its not tho

#

kadanes algo means ur using the prev as a add on

soft basin
#

ngl i always did that problem with sliding window

soft basin
#

i didnt think it was dp

vernal furnace
tawny nimbus
#

u dont do that with the problem on ur oa

#

hard to see the difference ig

#

but they're not the same

#

well

#

ig u could use kadanes

#

its not kadane enough for me to call it anything more than sliding window tho

spark hearth
tawny nimbus
#

kadane i think of length of subsequence, not sum of it

hallow scroll
#

@woven quest recruiter just redirected me to the onboarding email thing rip

#

she didnt say anything about that, just told me to ask the onboarding people

#

yes Sadge

soft basin
#

looks like theres a chance juster no amazon

hallow scroll
#

I asked onboarding people for a timeline or something, I think it should be fine but idk we'll see

hallow scroll
sinful locust
#

lol

soft basin
#

idk if it would work

sinful locust
#

why would they not open winter

#

like

hallow scroll
#

we'll see when onboarding replies ig if they told you they will let us in a month then ig we'll be fine in a month

sinful locust
#

it shouldnt count as dp

#

sadage

#

wait theres a separate application for winter?

#

i thoguht it was all in one

vernal furnace
# sinful locust its mad ez tho

here is a potential subarray: [2,-7,3,-6,-4,9], maximum subarray length is 3, what would the approach to adding to the window be? since the negatives decrease the total and the max is just 3 as in the value

hallow scroll
sinful locust
#

whats the waiting a month thing then

hallow scroll
#

i think its just too early for the onboarding people to start putting people in winter idk

sinful locust
#

whats opening in a month

#

ohh

vernal furnace
#

u could do a sliding window / kadane but the since the negatives decrement the total how would u add?

#

that was the main issue I had with the problem since the "max subarray" could be a subset of the "k" the max theoretical length of a subarray

soft basin
#

bc it can be a continuous sequence of negative numbers

vernal furnace
soft basin
#

then 2 would be the max sum

sinful locust
#

lemme code it up

#

ive solved this q so many times

vernal furnace
#

I can't remember all test cases but what abt a scenario where the next number u added increased the total value but u lost the contiguous subarray since u disregarded the negative?

sinful locust
#

u only update window if cur sume is negative

vernal furnace
sinful locust
#

then u just update to 0

soft basin
#
int largest = nums[0];
        int current = nums[0];
        for(int i = 1; i < nums.length; i++){
            current = Math.max(nums[i], current + nums[i]);
            largest = Math.max(largest, current);
        }
        return largest;```
sinful locust
#
def lol(arr):
  currsum = arr[0]
  maxsum = currsum
  for i in range(1, len(arr)):
    currsum = max(currsum + arr[i], arr[i])
    maxsum = max(currsum, maxsum)
  return maxsum
#

ya

#

lmao

#

based

#

and noodle are on the same brain wave

vernal furnace
#

hmm that's template kadanes algo

soft basin
#

ive coded this up from memory

sinful locust
vernal furnace
#

maybe I made some other mistake on the OA then

#

cuz I remember this not working

#

but nw, thanks though

sinful locust
#

oh

#

u did with max nvm

tawny nimbus
#

lemme tryyyyyyy

#

c++ time

sinful locust
#

ew

tawny nimbus
#

oh this is kadanes

#

mb

#

@vernal furnace

vernal furnace
#

Lol nw, tbh half of the issue is I don’t remember the exact wording of the question I just remember where I was making an error, I found it hard on that OA to get kadanes to work on a subset of a sub array without losing the previous values since the value of k could be greater than what I’m checking

hallow scroll
#

yeah idk if that problem could be solved with kodanes

#

I got that problem too

tawny nimbus
#

u can

#

u just need to have a count of whats ur current size

hallow scroll
#

im dumb tho so idk

#

wait yeah makes sense

fickle ivy
#

feels bad

#

RIP his offer

#

atleast june can help him cop

#

cope

wooden shard
#

Is duolingo karat automatic?

fickle ivy
#

the rest of us single mfs just

fickle ivy
sick oar
#

no

wooden shard
#

Bet that’s good to hear

sick oar
#

has msft or salesforce started yet

fickle ivy
#

idt msft has

#

salesforce is only open for futureforce rn right

wooden shard
#

Anyone do Duolingo karat?

sick oar
#

no the app is open

#

but

#

idth anyone has heard? idk tho

fickle ivy
#

yeah im still under consideration

#

i applied a while ago

tawny nimbus
#
int solve(vector<int> arr, int k){
  if (arr.size() == 1) return arr[0];
  vector<int> maxSub(arr);
  int maxSum = arr[0];
  int currSize = 1;
  for (int i = 1; i < arr.size(); i++){
    if (currSize == k){
      if (maxSub[i] > maxSub[i-1] + maxSub[i] - arr[i-3]{
        currSize = 1;
        continue;
      }
      maxSub[i] = maxSub[i] + maxSub[i-1] - arr[i-3];
    }else{
      maxSub[i] = max(maxSub[i], maxSub[i] + maxSub[i-1]);
      currSize++;
    }
    maxSum = max(maxSum, maxSub[i]);
  }
  return maxSum;
}
#

i hate c++

#

this took way too long

#

gonna pop this in an ide to see if it works

#

but this should be working

#

someone give me a test case

cloud tiger
#

Did anyone apply to Samsung and have to complete their profile on untapped? I think the link they sent is broken because it just routes you to the greenhouse page again

tawny nimbus
#

u need to account for max k constraint

soft basin
#

[0,0,0,0,0,0,0,0]

tawny nimbus
#

thats a nasty test case

soft basin
#

exactly

tawny nimbus
#

what k

sinful locust
#

bruh

fickle ivy
tawny nimbus
#

LOL

#

i forgot a closing paranthesis

#

oops

sinful locust
#

gimme 5 mins

tawny nimbus
#

o u in an internship rn?

sinful locust
#

ya

#

wait

#

was

#

mr pan actually

#

crying in his intro

#

bc no return offer

tawny nimbus
#

where u workin

#

looks like the code works

#

for ur nasty ass test case

vernal furnace
sinful locust
#

cap1 being slow af

tawny nimbus
#

thats just checking if subarray with max size 1 is greater than the current element plus two behind it

#

well not always 2 behind

#

but just behind it

#

also my code has bug

#

give me a moment

#

my code dont work for k <= 1

sick oar
#

d.e. shaw slow af

tawny nimbus
#

oops

#

true

sick oar
#

does anyone know how long jane st takes

#

phone --> final

#

yeah

#

the hour?? lmfao

#

my interviewer said a few days

tawny nimbus
#

oh i know whats wrong

sick oar
#

i also had my phone from 3-4:30pm EST

#

so end of work day

sick oar
#

my interviewer was like "hope to see u next summer, gl on next round" so if i fr failed i might be a lil confused

tawny nimbus
#

ok my code just buggy

#

im too lazy to fix

potent ore
#

how long did it take for people to get the next round for Capital one after the codesignal?

oak wraith
#

yeah that’s only if u don’t get it lmao

#

it shows u a breakdown of score and the only thing missing was speed

sinful locust
#

Amazon portal change anyone

tawny nimbus
#

what did u get on codesignal

#

its 700+ for an interview

potent ore
#

got rolled on the last question

tawny nimbus
#

nice

potent ore
#

so whats the process after?

#

phone screening then powerday?

tawny nimbus
#

straight to powerday

potent ore
#

oh nice, did you do yours?

formal gust
#

wtf Palantir has karat and onsite

#

4 rounds for one internship

tawny nimbus
#

not yet

#

final is next week

potent ore
tawny nimbus
#

thanks u2

proud whale
#

Who’s done palantir on-site, can I dm

tawny nimbus
#

@vernal furnace here's the updated code, i forgot to update currsize for less than k subarrays

#
int solve(vector<int> arr, int k) {
  if (arr.size() == 1)
    return arr[0];
  vector<int> maxSub(arr);
  int maxSum = arr[0];
  int currSize = 1;
  for (int i = 1; i < arr.size(); i++) {
    if (currSize == k) {
      maxSub[i] = max(maxSub[i], maxSub[i] + maxSub[i - 1] - arr[i - k]);
      if (maxSub[i] == arr[i])
        currSize = 1;
    } else {
      maxSub[i] = max(maxSub[i], maxSub[i] + maxSub[i - 1]);
      currSize++;
      if (maxSub[i] == arr[i])
        currSize = 1;
    }
    maxSum = max(maxSum, maxSub[i]);
  }
  return maxSum;
}
#

when will onsites actually be on site

halcyon knoll
#

Tmr.

soft basin
#

im p sure they used to be onsite

ivory ocean
#

yo who did the cap1 final yesterday

tawny nimbus
#

the pepee dude

#

@north scroll

tawny nimbus
#

way too verbose tho

#

can't be helped

tawny nimbus
midnight halo
#

anyone know how cap1 locations differ

#

do most ppl do mclean

sinful locust
#

yeah

#

post are in mclean richmond plano

#

pay is

#

sf>nyc> everythign else> plano

tawny nimbus
#

do u get to choose

sinful locust
#

yeah

tawny nimbus
#

o sick

sinful locust
#

but nyc and sf has limited spots

tawny nimbus
#

nyc > sf

#

oh so apply early

#

basically

sinful locust
#

yeah

tawny nimbus
#

sf kinda mid

sinful locust
#

sf pay is higher than nyc

tawny nimbus
#

im not going back to sf

#

how much higher is it

#

like 2 dollars?

#

can't be too different

soft basin
#

first worry abt securing the internship before worrying abt location lol

tawny nimbus
#

true

sinful locust
#

nyc is 65 sf is 67

soft basin
#

literally 2 bucks

#

i wish i put nyc for amazon first rather than seattle

sinful locust
#

yeah same

tawny nimbus
#

oh

sinful locust
#

once i get offer ill ask

tawny nimbus
#

i'd take nyc all day then

soft basin
#

idt u can change tho

tawny nimbus
#

did u already do power day

soft basin
#

seattle isnt too bad

#

tho

tawny nimbus
#

mines in a week

#

well

#

a little over a week

#

1.5

sinful locust
#

yeah i got this info from recruiter in offer meeting

tawny nimbus
#

nice

soft basin
#

i alr did amz final i have c1 tomorrow

sick oar
sinful locust
#

i wish i put amzn bay

#

or nyc

soft basin
sick oar
tawny nimbus
#

i didn't even get oa for amazon yet

#

how long did it take u guys

#

true

steady crow
#

whend u apply

soft basin
#

i applied june 25h

tawny nimbus
#

theres a sf specific tax

#

i applied like aug 10th

#

or something

soft basin
#

got oa 18th dont go off of my timeline tho

#

its all rng

tawny nimbus
#

ic

sick oar
#

amazon nyc is p small

#

mostly ads teams

#

or aws

soft basin
#

im glad im almost done with the process tho

tawny nimbus
#

i wanna go to nyc so bad

#

sf is so boring

#

dont go there

#

theres nothing to do

soft basin
#

my fam lives in brooklyn

sick oar
#

there's a few others like amazon fresh

sinful locust
#

seattle is hq?

sick oar
#

amazon books

sinful locust
#

shit ton of interns

sick oar
#

yea

soft basin
#

im p sure seattle is one of the tech capitals of the US

sick oar
soft basin
#

im ok w seattle bc of the weed

sick oar
#

no

#

you can change location for ft tho

soft basin
#

they give based off of what u put when u applied

crisp berry
#

can i email to ask for changing preference beforehand

soft basin
#

unless none are available

#

then they give u whats availaible

sinful locust
#

tbh maybe, i got offer last friday and requested nyc but they still havent gotten back to me when they usually do in 1 or 2 days

scenic sluice
tawny nimbus
#

i've been there for a summer bro

#

its super boring

#

u need a car to do anything fun

soft basin
#

sf has no metro?

tawny nimbus
#

they do but like

#

nothing fun is close enough for metro

past comet
tawny nimbus
#

u can go hiking and stuff but u can do that all in 6 weeks

soft basin
#

i enjoy walking in da city and smoking weed lmao

tawny nimbus
#

then ur left with nothing to do

#

o

sinful locust
soft basin
#

thats for c1 @past comet

past comet
#

Ooo mb

#

I thought its amzn

soft basin
#

has it been a week yet?

past comet
#

Last Wednesday i gave my final

#

So yeah its been a week

soft basin
#

hmm its gonna be soon then

#

dw

past comet
sinful locust
#

if u havent been rejected yet its a good sign

soft basin
#

i hope recruiter wont try to call me in the middle of class

#

if i do get amazon offer

sinful locust
#

they send email to schedule

soft basin
#

my classes start next week 😔

past comet
soft basin
#

just check ur junk mail to be safe

#

one of my friends got his offer in junk mail and didnt realize for a week

past comet
#

Porta is not updated

tough ledge
#

seatgeek already closed? 💀

past comet
#

So probably not gonna receive a email till the portal changes

sinful locust
#

portal changes before email

soft basin
#

job transferred

#

then u !process offer 😈

bold barn
#

if I applied to amazon a week ago with referral and still haven't gotten OA is that worrying?

past comet
soft basin
bold barn
#

why not

#

what

sinful locust
#

what happened to the guy who had job transferred without oa

hidden gust
#

does uber usually don’t send out OA?

#

why i got phone directly

halcyon knoll
hidden gust
#

yes

#

i got an email saying schedule a 60 mins internview

#

not cracked at all...

crisp peak
hidden gust
#

just now

crisp peak
#

i got a referral at uber and still nothing 😦

crisp peak
hidden gust
#

8/12

#

last week

#

amazon? can you see a past application?

crisp peak
#

same, not sure if it's supposed to change to under review for uber though? I thought that's just amazon

soft mist
#

Uber ghosted me last year

#

So yea idt you get reject if they don’t interview u

harsh scarab
wooden shard
#

did they patch the square code signal link?

serene slate
#

Idk but i used it yesterday

wooden shard
#

do u have a link

serene slate
wooden shard
#

bet thx bro

hardy patrol
#

my gpa is exactly 2.0 im saved from academic probation lets goooooooo

harsh scarab
hidden gust
#

i think it has something to do with campus recruiter?

soft mist
#

Probably

#

I mean we’re same school right

hidden gust
#

yes

soft mist
#

So yea it has to be

harsh scarab
hidden gust
#

yes, we are in the same school. lol

harsh scarab
#

i just did the form they want to interview in the next 2 weeks

soft mist
#

Umich

fickle ivy
#

pog mich

hidden gust
harsh scarab
open relic
#

It's not really a phone interview

#

but it's HR Phone call

hidden gust
open relic
#

Behavioral type questions like why IMC

#

What do you value most when choosing interns

#

I did it yesterday

#

yesterday morning

#

and get informed of the final round yesterday afternoon

#

and then confirmed the final round time next Wednesday

#

So you did your HR call on Monday and still heard nothing back from them?

#

yea they said the same thing to me

#

The HR told me they should be able to make a decision by Friday

#

but it turned out to be much faster...

#

I had almost one year of fulltime SDE experience here in the US

#

then I quit my job a few months ago to pursue a master's degree

soft mist
#

@wraith ice like 30% of imc was Waterloo this year u have a good chance

open relic
#

Looks like IMC is very selective. I heard from people who were interviewed last year

#

they said it was hard

sinful locust
#

can i get mcdonald’s referral

soft mist
#

Yes

sinful locust
#

how much do i pay

soft mist
#

$69

sinful locust
bold barn
#

i know for a fact i bombed duolingo OA why are all these ppl getting rejected before me?

#

i TLE’d first q, couldnt even get a working solution for 2

#

also does anyone know wtf is the deal with waterloo

#

never heard of this school before all the grinders on reddit

soft mist
#

Lmao

bold barn
#

it feels like 2/3 of reddit goes to that random ass canadian school

soft mist
#

Waterloo is pretty big

bold barn
#

36k is pretty big but like

#

G tech is comparable to that size

soft mist
#

Waterloo you need like

#

5 or 6 coops iirc

#

To graduate

crisp berry
#

how to get Uber phon

soft mist
#

Northeastern u need that much?

bold barn
#

oh shit maybe i should apply rq

mighty ember
#

how's the capital one behavioral part of the power day, anyone take it?

#

anything i should look out for

#

its like an hour long

stable root
#

It’s only 3 behavioral questions

#

Assuming ur TIP

fickle drift
#

you need 1 at northeastern to grad

#

is waterloo actually 5/6?

mighty ember
#

and yeah i am tip

stable root
#

No, just a chat it only took me 40 mins

fickle drift
#

oh co-op degree

harsh scarab
#

if i get LC on my C1 im gonna scream into the mic during my interview

mighty ember
#

bruh 40 mins for 3 questions how long are these questions

fickle drift
#

i don't think we even have that at northeastern

stable root
#

And that’s cause the guy was trying to sell me on the role for 20 mins

#

Standard questions

mighty ember
#

damn bet

#

thanks

stable root
#

Np

bold barn
#

because i think I had the right ideas, the Qs were just so annoying in their I/O format

#

they had a graph pathing problem where you had to return your input as a list of north south east and west

#

just needlessly complicated, a 2D array would have been way easier

#

again I didnt find it that hard but especially with Java data structures adding levels of needless nonsense makes it harder for me to do it in the time limit

#

honestly i'd go for python

#

I wish i was better with python java data structures are pretty annoying

#

wait they allow kotlin?

#

hold up thats huge

#

oh

#

but most do?

#

i didnt even know that

#

i gotta get on that

#

idk any kotlin but functional paradigm >>>>>

#

actually I retract my statement hashmap problems would be beyond annoying

uneven sand
#

hashmap in fp KEKW

spark hearth
#

ur hot

tawny nimbus
#

LOL

fickle ivy
#

sushi

#

is that you in your pfp

tawny nimbus
#

no

fickle ivy
#

who is that

tawny nimbus
#

some idol

fickle ivy
#

which band

tawny nimbus
#

my friends all do that shit

#

idk

fickle ivy
#

shes a solid 5/10

tawny nimbus
#

eh

#

i'd say 6/10

#

unblurred image might be 7/10 or 5/10

fickle ivy
#

i was kidding lmfao

#

shes actually

#

pretty

tawny nimbus
#

👀

#

why dont we ping sushi

#

@wary whale

#

how many sushis are in this discord

fickle ivy
#

@wary whale

whole kelp
#

hi lads!

fickle ivy
#

hi ladies!

#

wait what

whole kelp
#

has anyone here already done his optiver tech interview?

fickle ivy
#

i did trader

#

not swe

#

and behavioral not technical oop

whole kelp
#

mmmm

fickle ivy
#

got rejected after behavioral lmao

whole kelp
#

hot was it¿

fickle ivy
#

uh

#

it was great tbh

#

but im too young so they said no

whole kelp
#

i got oa -> behavioral

fickle ivy
#

its a standard behavioral

#

for trader?

#

yeah standard questions like

whole kelp
#

not i have technical one

#

now*

fickle ivy
#

oh sheesh

#

trader?

whole kelp
#

swe

fickle ivy
#

o

#

well

whole kelp
#

😮

fickle ivy
#

gl

#

and prep well

whole kelp
#

thanks! i just came here to collect some wisdom

steady crow
whole kelp
#

not a lot of info in leetcode about optiver

#

xd

steady crow
#

like are you 2-3 years ahead?

fickle ivy
#

nah im incoming frosh rn thats why lmao

tawny nimbus
#

13 yr old ban hammer

steady crow
#

bruh

whole kelp
#

lol

fickle ivy
#

wait by incoming freshman i meant like

#

high school

whole kelp
#

yeah

#

we got u

fickle ivy
#

well

#

havent been rejected

#

yet

#

so

#

maybe we chilling? floosh

#

me ?

#

bro i had my final yesterday KEKW

#

but i fucked it a little bit

#

but not too much

#

so maybe im okay ic ant really say

#

still under review

#

i think by now they're prob done reviewing though right they tend to email in the mornings

steady crow
#

whend you apply

fickle ivy
#

they send OAs

#

every monday

#

ive heard

uneven sand
#

yea amazon sends OA and final invites every monday

#

usually it's in the afternoon PST

fickle ivy
#

wait i got my final invite on a thursday

uneven sand
#

yahkuna

fickle ivy
#

lmao

#

sob 😦

uneven sand
#

what role

whole kelp
#

for amazon oa¿

uneven sand
#

i have akuna phone in 2 weeks but im worried that there will be no spots left lol

fickle ivy
#

well

#

everything i studied

#

did not come up

#

nor on OA nor on final

#

and i studied heaps and trees

uneven sand
#

pray that you get the same problems that i did

whole kelp
#

i did amazon oa 2 times

fickle ivy
#

arrays and strings are good

#

stack is also asked

spark hearth
#

I'm gonna apply to amazon with a fake account just to do the oa

whole kelp
#

i got some bfs easy question and one about finding the K closest trucks to the origin

uneven sand
whole kelp
#

2 different positions

uneven sand
#

i applied to a lot of subsidiaries but i didn't get any response

whole kelp
#

do u know if twitch interns go through the same process as amazon ones?

oak kite
#

if you clear the amazon final, how much time do they give you to accept/reject the offer?

whole kelp
#

2 weeks

uneven sand
#

i wonder if getting amazon oa means i can't do the process for their subsidiaries

whole kelp
#

at least for me

whole kelp
#

i am also being ignored by subsidiaries

oak kite
#

imagine reneging amazon for twitch

whole kelp
#

idk why 😦

spark hearth
#

idk abt oas, but u can get interview for all of them

whole kelp
uneven sand
spark hearth
#

yeah

#

renege amazon for aws

#

turk

uneven sand
#

renege aws for amazon

spark hearth
#

who founded aws

whole kelp
#

renege amazon intern for amazon sde3

spark hearth
#

like a week

#

if u get ghosted, ur basically rejected

oak kite
#

i have not heard from microsoft at all

sinful locust
#

AMAZON COME TOMORROW PLEASE

uneven sand
#

msft can take forever to reach out

spark hearth
#

wtf

#

no, they transfer everyone

sinful locust
#

happens to everyone

uneven sand
#

yea you get transferred to wherever your school is

spark hearth
#

which can take forever

static spindle
#

If it’s been almost 2 weeks since my cap 1 OA and they haven’t reached out, is that a rejection?

spark hearth
#

possibly

sinful locust
uneven sand
#

yea it took me a few weeks

#

what score did you send

static spindle
#

ok ty homies

sinful locust
#

me?

static spindle
#

784

sinful locust
#

or heck

uneven sand
#

ok you'll be fine

#

that's high enough for c1

spark hearth
#

c1 does not care abt ur oa score

#

u only need to solve the first problem

uneven sand
#

lol

spark hearth
#

man's didn't even take the oa

#

I'm talking abt @uneven sand

uneven sand
#

oh yea lol

#

i got in without sending oa score

static spindle
#

that’s what I’ve heard 🤞I have another big bank on my resume so I thought I should be fine but I’m stressing 😔

steady crow
#

why doesn’t c1 take f-1 students sad

sinful locust
#

tomorrow

#

im gonnna

#

decent

eternal hornet
sinful locust
#

if u can get it up to 800

uneven sand
#

that's decent but ideally you want to get 800+

static spindle
#

It’s decent but you always wanna aim higher

spark hearth
#

capital one

sinful locust
#

800+ itll be good enough for most

eternal hornet
#

damn

uneven sand
#

also the trick is to do 1, 2, 4 and skip 3

#

3 is usually annoying and just doing 1, 2, 4 can get you 820+

#

yea i tend to get good rng on practice ones

oak kite
#

i just realized i never applied to microsoft

static spindle
#

The last 2 times I took codesignal my 4 was annoying af :/

oak kite
#

...

static spindle
#

I got something with binary string queries

hushed crystal
#

Damn wait this server is so cool wtf

#

How have I never come across this before

#

Whats good guys

eternal hornet
static spindle
#

I figured out an approach on paper but coding it was hard

eternal hornet
#

i mean I can't help but keep up with it

#

but still

#

pray

hushed crystal
#

The process is already giving me hella stress tho

fickle ivy
#

if u can do 3 though

#

do try to do it

#

otherwise just end it

#

like read 3

#

bc sometimes its doable

eternal hornet
hushed crystal
uneven sand
#

it's better to not open a problem than to open and not do it i think

static spindle
#

Oh, did you actually do binary inversions? I think I was going for an O(n) solution. I didn't realize n^2 would work

eternal hornet
#

is it true on codesignal that it's better to not even open the third question?

fickle ivy
#

idk bro

#

i did 1234

#

and got 847

hushed crystal
#

You guys seem so far along in the process 0.o

fickle ivy
#

and mine were ez pz

#

u can do it

#

trust

hushed crystal
#

I've just started a few days ago

fickle ivy
#

id say go for the big cake

eternal hornet
#

i hear 1,2,4 is the move

#

and open 3 if and only if you are certain you have time

white zinc
#

what are y’all’s thoughts on jane street business development internship if the end goal is swe

static spindle
#

maybe lol, idk. I kinda hated that question so I might just stop worrying about it. I wanna get the 4 where you are supposed to find how many sums are divisible by k

static spindle
white zinc
#

is it still a good exp or is it better to do a swe internship at a diff company

#

i meaN

#

that’s the only reason i’m asking lmao

hushed crystal
#

But idk unless Jane Street is your be all and end all Id go for SWE at a different company

#

Makes you more marketable if Jane Street doesn't work out or you don't end up liking it there lol

white zinc
#

true jane street name is just sexy

hushed crystal
#

Paycheck is sexier

static spindle
#

yeah lol, I had a friend who got that on a practice. blessed by rnjesus frfr ong prayge

oak kite
#

databricks or roblox prob

#

i think it's resume reject

#

ive seen people with 750+ get into both companies

#

which apps are the ones to look out for besides google coming up?

ocean widget
#

which companies use Codesignal other than roblox 😮

oak kite
real idol
#

And it's custom not gcA

ocean widget
#

I've not gotten replies from uber yet

oak kite
#

very few have

ocean widget
#

and idk if reddit/quora are hiring

obsidian mason
#

maybe cause there was already one u took recently?

ocean widget
#

you can do this 😄 dwdw

obsidian willow
#

849 is max ins't it?

oak kite
#

how fast do you have to complete all questions to get 840+ lol

obsidian willow
#

I did a practice where i maxed out the categories and got 849

#

Why don't they just make 850 max lol

#

Much more satisfying that way

ivory ocean
eternal hornet
#

method?

#

i thought the cooldown only applied for the same company or something?

#

but if it's different companies, there's different codesignals, right?

hardy patrol
#

ngl are there companies that just ask you lc easies bruh

eternal hornet
#

wait optiver has a 3 day hackerrank?

#

as in it takes 3 days to complete?

#

bruh, what?

#

so quick question cuz I'm getting mixed answers here. even if you get a different code signal invite from a different company, the cooldown still applies and you have to use your old score?

midnight grove
#

was anyone able to move amazon from summer to fall? they told me i couldnt and the applications were for summer only 🤔

eternal hornet
#

fuck, I guess I'll just make alt accounts lol

#

wdym

#

like I only got the invites through email

#

i haven't opened them yet

#

and I don't see them in my codesignal account

#

tbh why do they have that cooldown

frosty mulch
#

your pfp is not a turn off

eternal hornet
#

it says that it's meant to "properly reflect candidates' skills instead of their test taking abilities" online

#

but having a coding assessment in the first place assesses test taking abilities

#

i'd rather do a coding assessment with an in person interviewer so that I can tell them my thought process and get hints

#

i feel like that better assesses skills

tawny nimbus
#

they do after the oa

#

they just dont have the resources to interview every candidate

uneven sand
#

yea

potent ore
#

nice, i couldnt for the life of me find the bug using print statements

#

the visible test cases were not enough for me lmfao

wooden shard
#

Are practice code signal tests easier than proctored ones?

hardy patrol
#

yea cuz i cant cheat on the proctored ones

uneven sand
#

were those processes offers?

#

or rejects? KEKW

static spindle
#

yes

#

the test tells you exactly what you can and can not use

eternal hornet
#

can I use a small whiteboard?

#

i prefer whiteboard over paper tbh

atomic fox
#

for hirevue is it similar to codesignal where you are allowed to look up documentation?

#

nice thanks man

harsh scarab
#

they don’t handle it unlike every other platform

atomic fox
#

yeah I did a practice question and I'm still confused lol, never thought I would miss leetcode input

harsh scarab
#

do 1,2,4,3

sharp yew
#

No update from Amazon today? 🥺

past comet
#

When was your final ?

hot venture
past comet
sharp yew
hot venture
#

“Package has been shipped”

past comet
past comet
sharp yew
past comet
past comet
#

isn't that automated mail box or smth

harsh scarab
#

^

gloomy oar
#

yes bestie

real sedge
sharp yew
#

I think so

sharp yew
crystal agate
#

gah damn wtf is this

hushed crystal
#

wtf is that

tribal ice
#

Got a question...

I did my cisco meraki OA this morning, was solid with 2 questions and kind of shaky on the last one.
got a reminder to do the test again this evening. to retake or ignore?

real sedge
crystal agate
real sedge
#

Thot it was tiktok lmao

clever grail
#

yes

clever grail
past comet
#

anyone who had their final last week got the descion ?

topaz gale
#

Does Optiver send OA to everyone or they do resume screening?

celest bane
#

i got optiver oa

#

but it says i have 72 hours

#

to do it

#

like 72 hours from start to finish for the whole assessment

mossy compass
#

9am-9pm, 6 days a week dogesmile

celest bane
#

anyone else know about this

slow quarry
sinful locust
celest bane
#

yea

sinful locust
#

someone said you can

#

now

celest bane
#

i think so

sinful locust
#

wtff

slow quarry
sinful locust
#

thats messedup

#

at least i can do my phone in python now

tribal ice
#

I got the reminder to take the email some minutes ago...

and I already did this morning

crystal agate
celest bane
#

@slow quarry did you take it?

crystal agate
#

or something like that

sinful locust
#

@clever grail lurking

slow quarry
clever grail
crystal agate
#

apply 4 robometrics with that resume and let us know

celest bane
#

@slow quarry it says 2 questions what’s so bad about it

sinful locust
#

lol

#

open it and see

slow quarry
sinful locust
#

nothing too bad about it, just vague and no cases

#

lmaoo

#

why bother answering

#

nah by agi

slow quarry
#

my multipel people

celest bane
#

I’ll just do it and comment in something like fuck you if it’s too hard

celest bane
#

I really don’t care about working at fucking optivor lmao

sinful locust
#

optivor

slow quarry
#

omnivore

sinful locust
#

then dont take their oa

#

save yourself the several hours

celest bane
#

What if I do good

#

Then I love working at optivor

sinful locust
#

but you dont care

celest bane
#

🙂

sinful locust
sinful locust
#

fiy a funny man

steel hemlock
#

is there any technical part to the Palantir phone?

#

yes

sinful locust
#

who they are as a person / student

#

yes that too

#

highlight positive traits

#

that make them good fit

#

just speak all out for them

#

shddd

urban tiger
#

isnt g not out yet

#

how are u referring people

sinful locust
#

oh yall know each other?

#

same pfp?

urban tiger
#

ahhh

sinful locust
#

bet

tawny nimbus
#

IM SO BURNT OUT

#

AGUGHAHG

#

not even september yet

#

picked up leetcode again lol

#

its been 2 days

#

two

#

only like 140

#

but it was in like 3 weeks

#

now im grinding again 10 yesterday 6 so far today

#

quick question

#

whos the girl in ur pfp

#

wrong answers only

sinful locust
#

Anyone at greylock vip rn?

#

It’s so dead HideThePain

#

do they verify?

hallow scroll
stone echo
#

Anyone get this for code for good

tawny nimbus
#

whats greylock

sinful locust
#

As in no sexy companies?

#

Yeah most of them are too early

hallow scroll
#

😳

coarse marten
stone echo
#

What does that mean tho

#

@coarse marten I just applied and got this email about vaccines lol

#

Does it mean I got accepted to the hackathon or w/e

coarse marten
#

Idk

#

I think no

#

There is an oa

celest bane
#

yea this optiver oa

#

is retarded

tawny nimbus
#

its online

#

like u can make it before u even start

#

is what i should've done

#

how fast do u guys type

random sonnet
#

what is palantir phone like?

limpid crater
#

any tips to prep for amzn workstyle assessment besides reading LP

oak kite
#

Speed run leetcode

sharp yew
#

Does anyone get rejected by amazon after more than 48 hours?

sinful locust
#

^

#

so much this

sinful locust
#

*BUMP

#

Does anyone get rejected by amazon after more than 48 hours?

#

CAN SOLEONE ANSWER THIS

#

what

#

after 48 hours?

#

fucj

#

*opens up the rope tab on amazon

jagged mural
#

pain

#

same tho

sharp yew
#

😢

ashen portal
#

isn't that treating it even more like college apps?

burnt spoke
#

Idk how do u treat it then

ashen portal
#

dunno

#

I just realized job apps are just college apps but slightly less painful in waiting for results

#

which is probably a bad mindset to be in

sinful locust
#

fuck

#

MOTHERFUCKER

#

my stress level

#

was coming down

#

but

#

PORTAL CHANGE

#

not its going bck up again

#

SUNNYVALE

#

LFGGG

oak kite
sinful locust
#

OH UH

#

LFGGHGG

#

LFGGG

#

FLLG

#

G

#

GLFLGLGLFLF

#

FLGL

#

FLFLF

#

@sinful locust WHEN'D U INTERVIEW

#

FLF

#

CONGRATS

#

FLLF

#

FRIDAY

#

OH SHIT

#

@past comet

#

ANYUPDATES?

past comet
#

Most probably i wont get any

sinful locust
#

i made it?

past comet
#

Les fucking gooo

#

Seattle

ashen portal
#

holy you applied so early

tawny nimbus
#

congrats

#

go process that shit

sinful locust
#

LFG

#

GJ

#

LEEEEEETS GO

#

WE MADE IT

#

DELETE

#

ur email

#

is showing

soft basin
sharp yew
tawny nimbus
#

wait what even changed

#

how do u guys know u got it

oak kite
#

wait whats the difference between the two roles

sinful locust
#

Congrats

sharp yew
#

I'm Sunnyvale tooooooo

sinful locust
#

akdsjf;klsjdfkl;jasdf

#

yesssssssss

past comet
sinful locust
#

GOD

#

THESE

#

PAST

#

VANCOUVER

#

;KALSDF;LKASDJF

#

ALS;KDF;LKASDJFK;ASDJFAS

#

DFASD

#

IM SO HAPPY

sharp yew
sinful locust
#

LFG

sharp yew
#

This means I got it?

sinful locust
#

GOOD JOB LINH

#

SAME OFFCIE

#

yes

sharp yew
#

Damnnnnn

soft basin
#

hmmm wth

tawny nimbus
#

congrats

#

everyone W

#

go process taht shit

hearty river
#

@tawny nimbus

tawny nimbus
#

@hearty river

simple garden
#

@sinful locust MY BROTHA ITS HAPPENINGGGGGG

sinful locust
#

LEEEEEEEEEEETS GO

#

UR NEXT

#

my god

#

sap + amazon

#

apdesifrp'ojiadsgk'jsa'gg

obsidian sedge
sinful locust
#

yes

#

YESSSSSSSS

obsidian sedge
#

MY GOAT

simple garden
#

@hearty river I love you

obsidian sedge
#

good shit dawg

sinful locust
#

🤝

sharp yew
#

NOOOO

sinful locust
#

LFGGG

#

after 3 weeks of

#

so many of us

#

none stop

#

got it rn?

#

LEETCODING

#

YA

tawny nimbus
#

big dubs

sharp yew
#

I want to change office and change to winter...

tawny nimbus
#

amazon is good

#

they give u free bananas

#

large bananas

sinful locust
#

Amazon is decent

#

But everyone knows Albertsons > amazon

tawny nimbus
#

how is amazon not at least decent

#

thats just cause they got better offers elsewhere

sinful locust
#

Then what’s good

tawny nimbus
#

dont mean amazon is bad

granite walrus
#

Lmao anyone who thinks amazon is ass needs to get off this discord and touch grass. Amazon TC is better than 90% of Americans

tawny nimbus
#

im not even gonna argue

safe minnow
#

I mean I heard it really depends on the team

tawny nimbus
#

with u

safe minnow
#

Some teams are even really good WLB

tawny nimbus
#

amazon is like

#

top 90%

#

its at LEAST decent

#

who cares if its not faang level

soft basin
#

bro i’m goin for the resume lmao

tawny nimbus
#

amazon is still goated

sinful locust
#

Man’s thinks McDonald’s > amazon