ozguramac / penr-oz-trick-one

Trick Question about transforming a matrix in-place

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trick One

Transform matrix

 {0,0,0,0,0}
,{0,0,0,0,0}
,{0,0,1,0,0}
,{0,1,0,1,0}
,{0,0,0,0,0}

to

 {0,0,0,0,0}
,{0,0,1,0,0}
,{0,1,1,1,0}
,{1,1,1,1,1}
,{0,1,0,1,0}

in-place without using any other variable or array allocated.

About

Trick Question about transforming a matrix in-place


Languages

Language:Java 100.0%