Interview Question
Implementation Consultant Interview
-
Fast EnterprisesGiven a 3x3 grid arrange the integers 1-9 such that each row, column, and 3 element diagonal, sums to 15.
AnswerAdd Tags
Interview Answers
4 Answers
▲
0
▼
Really easy. You should immediately realize that 9,8, and 7 have to go on the diagonal.
Rustyn James on
▲
0
▼
never mind, diagonal also had to add to 15 lol
Anonymous on
▲
0
▼
Start off by ensuring that no two numbers of 9,8, and 7 share a row, column, or diagonal. After that, it is easy.
Rustyn James on
▲
0
▼
Always start with placing 5 in the center; even number in the each corner; and odd number in the remaining box
Anonymous on
Add Answers or Comments
To comment on this, Sign In or Sign Up.