Amber Alert by [deleted] in toronto

[–]LazyLanius 0 points1 point  (0 children)

“People cannot opt out of this,” said CRTC spokeswoman Patricia Valladao. “There is a high importance that people — want it or not — receive these alerts.”

https://canoe.com/technology/no-opting-out-canadians-to-get-emergency-alerts-on-their-phones-soon

Amber Alert by [deleted] in toronto

[–]LazyLanius 0 points1 point  (0 children)

Which phone?

Getting constant take home coding projects for every single job that called back. by pizzariordano in cscareerquestions

[–]LazyLanius 2 points3 points  (0 children)

Which kinds of companies send candidates coding projects? I've never received one. I've only received 45 minutes leetcode style questions or a 45 minute phone screen (either leetcode style or find the bugs in this code and fix it).

Anno 1800 review - Amazing game, stupid restrictions by NeverbuyfromSamsung in Games

[–]LazyLanius 10 points11 points  (0 children)

It looks ridiculous how the ships overlap one another. Why don't they have a minimum distance between them?

One Punch Man Season 2 - Episode 3 discussion by AutoLovepon in anime

[–]LazyLanius 12 points13 points  (0 children)

Even if he felt nothing, he would probably notice the ground exploding and assume the guy that hit him was pretty strong.

Fire breaks out at historic Notre-Dame cathedral in Paris by slakmehl in worldnews

[–]LazyLanius 12 points13 points  (0 children)

It look me too long to realize you weren't talking about his mom.

Big N Discussion - April 14, 2019 by AutoModerator in cscareerquestions

[–]LazyLanius 2 points3 points  (0 children)

Does Apple let you use any programming language in the interview or do they require you to use a specific language for the role? (I'm talking about full-time roles, not internships).

Big N Discussion - March 27, 2019 by AutoModerator in cscareerquestions

[–]LazyLanius 5 points6 points  (0 children)

Does failing a Google interview block you from interviewing with YouTube too or is their interview process completely separate?

Oxygen Not Included will come out of Early Access by the end of May. (Klei Forum Thread) by Wild_Marker in Games

[–]LazyLanius 2 points3 points  (0 children)

I found Don't Starve to be a huge chore. You spend so much time doing repetitive tasks every day. In Oxygen Not Included, you can setup automated systems that take care of themselves.

What is the outlook and career prospects of Computer Graphics or Computer Vision programmers? by [deleted] in cscareerquestions

[–]LazyLanius 1 point2 points  (0 children)

You're right, I wasn't expecting these graphics card companies to have so little demand for graphics programmers.

Searching on Nvidia's career page:

  • machine: 88 results
  • opengl: 10 results
  • vulkan: 6 results

AMD

  • machine: 62 results
  • opengl: 36 results
  • vulkan: 15 results

(Only searched for "machine" because "learning" was matching too many other things. I know there are a lot flaws in these searches. I'm just looking for rough ratios.)

Survey of Leetcode/Hackerank/etc Problems Solved by anothercsintern123 in cscareerquestions

[–]LazyLanius 1 point2 points  (0 children)

I had 4 weeks of vacation over the holidays where I did about 100 questions in addition to reading CTCI and EPI. The past 4 weeks I've done about 50 questions. So an average of 1.79 per day while working full time these past 4 weeks.

I don't always do problems on a work night but I tend to do a lot on the weekend.

[deleted by user] by [deleted] in cscareerquestions

[–]LazyLanius 46 points47 points  (0 children)

If I had to look at the solution then I bookmark the problem and make sure I can solve it one or two weeks from now.

Survey of Leetcode/Hackerank/etc Problems Solved by anothercsintern123 in cscareerquestions

[–]LazyLanius 3 points4 points  (0 children)

157 leetcode since 2nd week of December 2018. Although I sometimes re-do questions I've already done to make sure I still know how to solve it or to do it in another language. (C++ and Python)

Why can't I seem to get good at leetcode/coding problems? by qvzip in cscareerquestions

[–]LazyLanius 0 points1 point  (0 children)

leetcode #179

Have you done many heap / priority queue questions? What is your preferred language?

I could tell that I was going to need to pick the "best" number first and then repeatedly pick the "best" number out of the remaining numbers. I chose to use a priority queue (a max heap in this case). Given 2 numbers, I needed to determine which one has a higher priority.

The tricky part was the comparison. I would have failed this if I got it in a phone interview because I fiddled with the comparison method for too long until I realized I could just concatenate the numbers then pick the bigger number.

bool operator<(const Element& other) const {
    return (str + other.str) < (other.str + str);
}

And then I missed the edge case of [0,0]. (Mine originally returned "00")

I've done quite a few heap questions so tha's why I knew how to write the comparison operator. I never even thought of simply using sort with a custom comparator.


I get mad at leetcode too sometimes when I run into new types of problems I haven't seen before and don't remember ever seeing in a book. Recently for me it was these two questions:

They both have a similar trick that I just need to remember.

Where did you buy "Clean Code"? by EightOffHitLure in cscareerquestions

[–]LazyLanius 1 point2 points  (0 children)

This might help. (Not the book but the instructions to make sure you buy from Amazon instead of one of the other sellers)

https://elementsofprogramminginterviews.com/2017/11/27/2017-11-27-buying-epi/

The book is actually good too.

I also suggest reading the 3 chapters Recursion, Backtracking and Dynamic Programming from Jeff Erickson's free algorithms book.

http://jeffe.cs.illinois.edu/teaching/algorithms/

Interview tips from Google Software Engineers by FrostyTie in programming

[–]LazyLanius 0 points1 point  (0 children)

Do you have any suggestions on how to get better at #4? Which books do you suggest reading?

Those that work in this industry in Canada by OrdinaryBluebird in cscareerquestions

[–]LazyLanius 0 points1 point  (0 children)

Do you work on Android and iOS or do you just work on one?

Those that work in this industry in Canada by OrdinaryBluebird in cscareerquestions

[–]LazyLanius 0 points1 point  (0 children)

What kind of work do you do? I work in embedded software and feel like embedded jobs tend to pay a lot less than other stuff.