| 8 | 8 | * @returns {string[]} |
| 9 | 9 | */ |
| 10 | 10 | export const annotate = (input) => { |
| 11 | | throw new Error('Remove this statement and implement this function'); |
| 11 | // Edge Case: Handle empty input array |
| 12 | if (!input || input.length === 0) { |
| 13 | return []; |
| 14 | } |
| 15 | |
| 16 | const rows = input.length; |
| 17 | const cols = input[0].length; |
| 18 | |
| 19 | // Edge Case: Handle rows with different lengths |
| 20 | for (let i = 0; i < rows; i++) { |
| 21 | if (input[i].length !== cols) { |
| 22 | throw new Error('All rows must have the same length'); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | // Create a result grid as a 2D array |
| 27 | const result = Array(rows).fill().map(() => Array(cols).fill('')); |
| 28 | |
| 29 | // Define the 8 possible directions (horizontal, vertical, diagonal) |
| 30 | const directions = [ |
| 31 | [-1, -1], [-1, 0], [-1, 1], |
| 32 | [0, -1], [0, 1], |
| 33 | [1, -1], [1, 0], [1, 1] |
| 34 | ]; |
| 35 | |
| 36 | // Iterate through each cell |
| 37 | for (let i = 0; i < rows; i++) { |
| 38 | for (let j = 0; j < cols; j++) { |
| 39 | // If the cell is a flower, keep it as is |
| 40 | if (input[i][j] === '*') { |
| 41 | result[i][j] = '*'; |
| 42 | } else { |
| 43 | // Count adjacent flowers |
| 44 | let count = 0; |
| 45 | |
| 46 | // Check all 8 directions |
| 47 | for (const [dx, dy] of directions) { |
| 48 | const ni = i + dx; |
| 49 | const nj = j + dy; |
| 50 | |
| 51 | // Edge Case: Check bounds to avoid accessing invalid indices |
| 52 | if (ni >= 0 && ni < rows && nj >= 0 && nj < cols) { |
| 53 | if (input[ni][nj] === '*') { |
| 54 | count++; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | // If no adjacent flowers, leave empty, otherwise set the count |
| 60 | result[i][j] = count === 0 ? ' ' : count.toString(); |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | // Convert the 2D array back to an array of strings |
| 66 | return result.map(row => row.join('')); |
| 12 | 67 | }; |
| 68 | |
| 69 | // Handled Edge Cases: Empty input array, rows with different lengths, accessing invalid indices |