Skip to content

ozguramac/penr-oz-trick-one

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages