7 kyu
Python Checkerboard
673 of 706gaptekar
Description:
You are trying to make a checkerboard made up of X's and O's. You've implemented the function before in a different language but it just won't work. The function creates an n by n board of X's and O's.
For example (Input --> Output)
n = 4 -->
[['X', 'O', 'X', 'O'],
['O', 'X', 'O', 'X'],
['X', 'O', 'X', 'O'],
['O', 'X', 'O', 'X']]
Debugging
Similar Kata:
Stats:
Created | Jul 2, 2016 |
Published | Jul 3, 2016 |
Warriors Trained | 1709 |
Total Skips | 24 |
Total Code Submissions | 2548 |
Total Times Completed | 706 |
Python Completions | 673 |
Ruby Completions | 44 |
Total Stars | 29 |
% of votes with a positive feedback rating | 88% of 194 |
Total "Very Satisfied" Votes | 155 |
Total "Somewhat Satisfied" Votes | 30 |
Total "Not Satisfied" Votes | 9 |
Total Rank Assessments | 9 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |