377 B
377 B
Hints
1. Define the TreasureChest generic custom type
- The
TreasureChestcustom type only has a single variant.
2. Define the UnlockResult generic custom type
- The
UnlockResultcustom type has 2 variants,Unlocked, andWrongPassword.
3. Define the get_treasure function
- Custom types can be pattern matched on in the same way to access their values.