StuffedFrog
Kraken
- Joined
- Jul 25, 2019
- Posts
- 4,758
- Reputation
- 4,061
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
How did you make the interview?one hundred thousand dollars btw on site but im gonna talk about going remote
applied on indeed this is the email they sent me to talk to themHow did you make the interview?
what are your quaifications. did you go to uni for computer science or anything?applied on indeed this is the email they sent me to talk to them
lied about my resume been studying comp sci by myself using a collection of videoswhat are your quaifications. did you go to uni for computer science or anything?
Damn. How long did it take you to self-learn the concepts for this job? I'm not in CS I'm in uni but in another program and wanna self-learn codinglied about my resume been studying comp sci by myself using a collection of videos
im still learning been about 3 to 4 months as long as you get to a level where you can understand leet code questions your good im still learning thoughDamn. How long did it take you to self-learn the concepts for this job? I'm not in CS I'm in uni but in another program and wanna self-learn coding
Wow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer positionim still learning been about 3 to 4 months as long as you get to a level where you can understand leet code questions your good im still learning though
Wonder if doing something similar would work for collegeone hundred thousand dollars btw on site but im gonna talk about going remote
freecodecampWow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer position
what resources have you used and if you don't mind, how long do you expend on learning this stuff in a week/day ??
i really like the videos on freecodecamp youtube where alvintheprogrammner is teaching themfreecodecamp
books using the content table and then watching videos on the chapters
codebats to work your way to harder questions
leetcode the harder coding questions should be done after codebats
gonna make a guide thoughWow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer position
what resources have you used and if you don't mind, how long do you expend on learning this stuff in a week/day ??
you never heard of github copilot1st day on the job
please code in python
>>> # Six roulette wheel spins (weighted sampling with replacement)
>>> choices(['red', 'black', 'green'], [18, 18, 2], k=6)
['red', 'green', 'black', 'black', 'red', 'black']
>>> # Deal 20 cards without replacement from a deck
>>> # of 52 playing cards, and determine the proportion of cards
>>> # with a ten-value: ten, jack, queen, or king.
>>> dealt = sample(['tens', 'low cards'], counts=[16, 36], k=20)
>>> dealt.count('tens') / 20
0.15
>>> # Estimate the probability of getting 5 or more heads from 7 spins
>>> # of a biased coin that settles on heads 60% of the time.
>>> def trial():
... return choices('HT', cum_weights=(0.60, 1.00), k=7).count('H') >= 5
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.4169
>>> # Probability of the median of 5 samples being in middle two quartiles
>>> def trial():
... return 2_500 <= sorted(choices(range(10_000), k=5))[2] < 7_500
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.7958
Please do, I'd love to read it as someone trying to get into it myselfgonna make a guide though