- #1
Bucs44
- 57
- 0
I'm trying to create a tromino where n=8 and the missing square is four from the left and six from the top.
Here's what I have so far:
Input: n, a power of 8; and the location L of the missing square
Output: A tiling of an n x n deficient board
1. tile(n,L) {
2. if (n==8) {
I'm unsure of how to denote where the missing square is. Can anyone help?
Here's what I have so far:
Input: n, a power of 8; and the location L of the missing square
Output: A tiling of an n x n deficient board
1. tile(n,L) {
2. if (n==8) {
I'm unsure of how to denote where the missing square is. Can anyone help?