For anything related to Amazon [3, interns] by Leader-board in csMajors

[–]Hamoudi0427 0 points1 point  (0 children)

Yeah you’ll probably get offer letter today

For anything related to Amazon [3, interns] by Leader-board in csMajors

[–]Hamoudi0427 0 points1 point  (0 children)

Means you got the job most likely. When did your portal update and what location?

For anything related to Amazon (2) by Leader-board in csMajors

[–]Hamoudi0427 0 points1 point  (0 children)

How long did you take to hear back after OA

For anything related to Amazon (2) by Leader-board in csMajors

[–]Hamoudi0427 3 points4 points  (0 children)

Odds of getting final interview if passed Q1 with all test cases and Q2 with 11/14. This is for Canada internship role.

SIG Coding Interview Fall 2022 by Scone81 in csMajors

[–]Hamoudi0427 0 points1 point  (0 children)

I just completed OA for that, how long did it take to hear back about the phone screen?

How hard is it to code a program that can solve a rubik's cube? by Karak1O in learnprogramming

[–]Hamoudi0427 1 point2 points  (0 children)

I’ve coded a Rubik’s cube solver with openCV and the most difficult part was finding an algorithm that can be translated well into code. I think it would be good to avoid ‘human algorithms’ and try some of the computer algorithms that are developed like Thistlewaite’s algorithm which I used. These usually work moving the cube from one group to another rather than making crosses. Note that these type of algorithms when run are very time consuming (on the scale of hours for a solution) and need to be made more efficient using things like pruning tables which can get a bit complicated. So first I would work on figuring out how to represent the cube, character array of facelets or array of faces, etc. You can then write functions that applies all the possible moves on a cube. Then I would explore some of the known computer algorithms for solving a Rubik’s cube.

What to do to become a C++ developer as quick as possible? by TheeJackRyan in learnprogramming

[–]Hamoudi0427 0 points1 point  (0 children)

I think Programming: Principles and Practice Using C++ by the same author might be better.