From 24790415d6e78f6708c92d18d1a378df4e061c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Font=C3=A1n?= Date: Fri, 11 Jul 2025 11:48:24 +0200 Subject: [PATCH 1/4] Update SolutionTest.kt --- src/test/kotlin/problem_104/SolutionTest.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/kotlin/problem_104/SolutionTest.kt b/src/test/kotlin/problem_104/SolutionTest.kt index 4886b75..12c4c10 100644 --- a/src/test/kotlin/problem_104/SolutionTest.kt +++ b/src/test/kotlin/problem_104/SolutionTest.kt @@ -20,6 +20,7 @@ class SolutionTest { @Test fun `Description test case 2`() { + println("Hola mundo") val tree = TreeNode(1).apply { right = TreeNode(2) } @@ -27,4 +28,4 @@ class SolutionTest { val case2 = Solution.maxDepth(tree) assertThat(case2).isEqualTo(2) } -} \ No newline at end of file +} From e3a60383cbfc52457645253ba50db0595f3fbec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Font=C3=A1n?= Date: Fri, 11 Jul 2025 12:34:25 +0200 Subject: [PATCH 2/4] Update SolutionTest.kt --- src/test/kotlin/problem_104/SolutionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/problem_104/SolutionTest.kt b/src/test/kotlin/problem_104/SolutionTest.kt index 12c4c10..8f672fa 100644 --- a/src/test/kotlin/problem_104/SolutionTest.kt +++ b/src/test/kotlin/problem_104/SolutionTest.kt @@ -20,7 +20,7 @@ class SolutionTest { @Test fun `Description test case 2`() { - println("Hola mundo") + println("Hola mundo2") val tree = TreeNode(1).apply { right = TreeNode(2) } From 51ada6b753ecf205957dd62fcc5983c818cb87fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Font=C3=A1n?= Date: Mon, 28 Jul 2025 09:21:41 +0200 Subject: [PATCH 3/4] Update SolutionTest.kt --- src/test/kotlin/problem_104/SolutionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/problem_104/SolutionTest.kt b/src/test/kotlin/problem_104/SolutionTest.kt index 8f672fa..57fa78a 100644 --- a/src/test/kotlin/problem_104/SolutionTest.kt +++ b/src/test/kotlin/problem_104/SolutionTest.kt @@ -20,7 +20,7 @@ class SolutionTest { @Test fun `Description test case 2`() { - println("Hola mundo2") + println("Hola mundo3") val tree = TreeNode(1).apply { right = TreeNode(2) } From 1c80f8d8656342d0a93b2fc9055a991727e8df0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Font=C3=A1n?= Date: Mon, 28 Jul 2025 15:16:13 +0200 Subject: [PATCH 4/4] Update SolutionTest.kt --- src/test/kotlin/problem_104/SolutionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/problem_104/SolutionTest.kt b/src/test/kotlin/problem_104/SolutionTest.kt index 57fa78a..15ab81e 100644 --- a/src/test/kotlin/problem_104/SolutionTest.kt +++ b/src/test/kotlin/problem_104/SolutionTest.kt @@ -20,7 +20,7 @@ class SolutionTest { @Test fun `Description test case 2`() { - println("Hola mundo3") + println("Hola mundo4") val tree = TreeNode(1).apply { right = TreeNode(2) }