From 96b46e7f72c4eab22aa5e2192e90298710c5437c Mon Sep 17 00:00:00 2001 From: "Sakamoto, Kazunori" Date: Fri, 20 Dec 2024 20:04:48 +0900 Subject: [PATCH] fix: fix problems of Lecture 1 --- src/problems/problemData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problems/problemData.ts b/src/problems/problemData.ts index e3cb7ff..1c70add 100644 --- a/src/problems/problemData.ts +++ b/src/problems/problemData.ts @@ -3431,7 +3431,7 @@ function 線を描く(x, y, dir, len) { java: ` public class Main { public static void main(String[] args) { - 正方形を描く(0, 0, 7); // caller + 正方形を描く(0, 0, 6); // caller 正方形を描く(3, 3, 3); // caller Turtle t = new Turtle(3, 3); // step }