Changes between Version 13 and Version 14 of ProgrammingPrompts


Ignore:
Timestamp:
Nov 24, 2015, 5:17:06 PM (9 years ago)
Author:
Timothy Lin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProgrammingPrompts

    v13 v14  
    1515=== Checkerboard
    1616Write 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]]
     17The top, left block is black and true.
    1718{{{
    1819#!div align="center"