From 8c614830b36f1dc30de15ac76d6dc40fe1082ad6 Mon Sep 17 00:00:00 2001 From: "Charles-A. Francisco" Date: Thu, 17 Oct 2024 19:28:57 -0700 Subject: [PATCH] Power of Thor 1 --- puzzles/python3/power-of-thor1/README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/puzzles/python3/power-of-thor1/README.md b/puzzles/python3/power-of-thor1/README.md index 38118f3..0abfa21 100644 --- a/puzzles/python3/power-of-thor1/README.md +++ b/puzzles/python3/power-of-thor1/README.md @@ -1,7 +1,5 @@ # Power of Thor - Episode 1 -This is a solution to the Power of Thor puzzle on [Codingame](https://www.codingame.com/training/easy/power-of-thor-episode-1). - ## Description In this puzzle, Thor is stranded on a rectangular grid and needs to reach a lightning bolt that is located at a specific position on the grid. The position of Thor and the lightning bolt are given as input to the program. Thor can move in four directions: North, South, East, and West. For each move, the program needs to output the direction in which Thor should move to get closer to the lightning bolt. @@ -52,7 +50,3 @@ while True: print(direction) ``` - -## Conclusion - -This solution demonstrates how to solve the Power of Thor puzzle on Codingame. The program reads in input values from standard input, enters a loop to calculate the direction in which Thor should move, and outputs the direction in which he should move. This solution can be used as a starting point to solve other puzzles on Codingame or similar platforms.