Changes between Version 13 and Version 14 of ProgrammingPrompts
- Timestamp:
- Nov 24, 2015, 5:17:06 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProgrammingPrompts
v13 v14 15 15 === Checkerboard 16 16 Write a static method that takes two int parameters {{{m}}} and {{{n}}} and returns a checkerboard-patterned two-dimensional boolean array that is {{{m-by-n}}} in size. Any given checkerboard square on a checkerboard has no adjacent squares with the same color (boolean value).[[BR]] 17 The top, left block is black and true. 17 18 {{{ 18 19 #!div align="center"