Part 1: Treasure Hunt Assignment

Overview

Your task is to navigate through a chain of nodes to find the treasure. Each node contains clues that lead you to the next node in the path.

How It Works

Accessing Nodes

You can access each node by calling:
workshop.kordyjan.pro/search/{id}

Your Name

Remember to add your name as a query parameter to claim your victory:
workshop.kordyjan.pro/search/{id}?name=YourName

Finding the End

When you reach the last node in the path, the response will be empty. This means you've found the treasure and completed the assignment! Your name will appear on the leaderboard.

Difficulty Modes

Easy Easy Mode

Each node returns the ID of the next node directly. Simply follow the chain from one node to the next until you reach the end.

Hard Hard Mode

Each node returns 4 different node IDs. Only one represents the next node in the path, and the other three don't exist (they return 404 when queried). You'll need to test each ID to find the correct path forward.