Skip to content

Commit

Permalink
edit 2313 : unshift 2 more blank line for left block . ready to reploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nuoxoxo committed Dec 13, 2023
1 parent 55ed782 commit 2e16401
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/includes/Aoc2313.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ var Aoc2313 = () => {
}

const combinedArrays = A.map((elemA, i) => {
elemA = [Array(elemA[0].length).fill([' ']), ...elemA]
elemA = [Array(elemA[0].length).fill([' ']), Array(elemA[0].length).fill([' ']), ...elemA]
// 👆 unshift 2 blank lines now the left block (which is the orignal block) looks better
const elemB = B[i]
const elemC = C[i]

Expand Down

0 comments on commit 2e16401

Please sign in to comment.