From ed9ccdc53c665446c842f212aca42fefc41bd1d4 Mon Sep 17 00:00:00 2001 From: Jeongan Lee <84510455+fkdl0048@users.noreply.github.com> Date: Fri, 12 Jan 2024 09:41:54 +0900 Subject: [PATCH] Fix: BOARDCOVER Private Method --- 2023/BOARDCOVER/BoardCalculator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2023/BOARDCOVER/BoardCalculator.cs b/2023/BOARDCOVER/BoardCalculator.cs index 22c689f..538e17e 100644 --- a/2023/BOARDCOVER/BoardCalculator.cs +++ b/2023/BOARDCOVER/BoardCalculator.cs @@ -9,7 +9,7 @@ public BoardCalculator(Board board) _board = board; } - public (int y, int x) GetFirstBlock() + private (int y, int x) GetFirstBlock() { for (var i = 0; i < _board.Hight; i++) {