Retired
Make a grid full of symbols (retired)
Description:
Make a grid of size m, n filled with each ascii character from 33 onwards. (32 is a space)
m = 3, n = 4
, return
+---+---+---+
| ! | " | # | chr(33), chr(34), chr(35)
+---+---+---+
| $ | % | & | chr(36), chr(37), chr(38)
+---+---+---+
| ' | ( | ) | chr(39), chr(40), chr(41)
+---+---+---+
| * | + | , | chr(42), chr(43), chr(44)
+---+---+---+
m = 2, n = 3
, return
+---+---+
| ! | " | chr(33), chr(34)
+---+---+
| # | $ | chr(35), chr(36)
+---+---+
| % | & | chr(37), chr(38)
+---+---+
m = 1, n = 1
, return
+---+
| ! | chr(33)
+---+
Note:
- No invalid solutions will be tested.
- 0 < m <= 10; 0 < n <= 10
Algorithms
Similar Kata:
Stats:
Created | Aug 5, 2022 |
Warriors Trained | 22 |
Total Skips | 0 |
Total Code Submissions | 56 |
Total Times Completed | 9 |
Python Completions | 9 |
Total Stars | 0 |
% of votes with a positive feedback rating | 42% of 6 |
Total "Very Satisfied" Votes | 2 |
Total "Somewhat Satisfied" Votes | 1 |
Total "Not Satisfied" Votes | 3 |
Total Rank Assessments | 6 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 7 kyu |