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.