Lesson 4
Identifying Moveable Positions in 2D Arrays with PHP
Introduction

Hello, and welcome, code explorer! Today's journey takes us through the intricate paths within a 2-dimensional array, often likened to a game board. Our mission is to identify ideal spots for game piece placement. Sounds like an adventure, doesn't it? Let's embark!

Task Statement

Visualize a chessboard in the form of a 2D array, where each cell could be marked 'E' for empty or 'P' for a piece. Our quest involves summoning a PHP function named findPositions(). Upon examining this 2D array, this function identifies all the spots where a new piece could be placed so that it can move to another empty cell in one move. The catch is that a piece can move only to an immediately neighboring cell directly above, below, to the left, or right, but not diagonally.

Consider this 4x4 board, for instance:

1P E E P 2E P E P 3P E P P 4P E P E

The function should output the following pairs representing positions: (0, 1), (0, 2), (1, 2), (2, 1), (3, 1). This output represents the positions where a new piece can fit perfectly and then be able to move in the next turn.

Solution Building: Step 1

Stepping right into action, we start with an empty positions array to help us log the sought-after positions. Understanding the dimensions of our "board" paves the way for defining boundaries in our exploration mission. In PHP, we determine the size of a 2D array using the count() function.

Using an array is crucial here because we don't know beforehand how many positions will be found. An array in PHP is dynamic and can resize itself to accommodate any number of elements, making it a perfect choice for storing an unknown number of positions.

php
1function findPositions($board) { 2 $positions = array(); 3 4 $rows = count($board); 5 $cols = count($board[0]); 6 // Further exploration follows
Solution Building: Step 2

With our boundary map, we begin our expedition across the board. We use two nested for loops to do this, traversing the entire board one cell at a time.

php
1function findPositions($board) { 2 $positions = array(); 3 4 $rows = count($board); 5 $cols = count($board[0]); 6 7 for ($i = 0; $i < $rows; $i++) { 8 for ($j = 0; $j < $cols; $j++) { 9 // ensuing exploration
Solution Building: Step 3

What's the plan for each cell, you ask? While exploring each cell, our trusty PHP code inspects if the cell is empty. If confirmed, it then peeks into the neighbors in the up, down, left, and right directions. If another vacant cell ('E') is spotted, we jot down the main cell's position in our positions array.

php
1<?php 2function findPositions($board) { 3 $positions = array(); 4 5 $rows = count($board); 6 $cols = count($board[0]); 7 8 for ($i = 0; $i < $rows; $i++) { 9 for ($j = 0; $j < $cols; $j++) { 10 if ($board[$i][$j] === 'E') { 11 if (($i > 0 && $board[$i - 1][$j] === 'E') || 12 ($i < $rows - 1 && $board[$i + 1][$j] === 'E') || 13 ($j > 0 && $board[$i][$j - 1] === 'E') || 14 ($j < $cols - 1 && $board[$i][$j + 1] === 'E')) { 15 $positions[] = array($i, $j); 16 } 17 } 18 } 19 } 20 return $positions; 21} 22 23$board = array( 24 array('P', 'E', 'E', 'P'), 25 array('E', 'P', 'E', 'P'), 26 array('P', 'E', 'P', 'P'), 27 array('P', 'E', 'P', 'E') 28); 29 30$positions = findPositions($board); 31 32foreach ($positions as $pos) { 33 echo "(" . $pos[0] . ", " . $pos[1] . ")\n"; 34} 35 36// The output will be: 37// (0, 1) 38// (0, 2) 39// (1, 2) 40// (2, 1) 41// (3, 1)
Lesson Summary

Neatly wrapped up, haven't we? Today we engaged in a thrilling treasure hunt and emerged victorious with the positions array. This journey revealed the importance of understanding 2D arrays and effectively maneuvering through them using PHP. By striking a balance between precision and caution, we cleverly avoided unnecessary complications and harnessed the power of conditional statements to devise an efficient blueprint for our code.

Now that we've mastered the theory, we step into the realm of application — the practice field. Venture forth and make your mark by solving correlated challenges. And remember, persistence is the best companion for a coder. Happy coding!

Enjoy this lesson? Now it's time to practice with Cosmo!
Practice is how you turn knowledge into actual skills.