diff --git a/exercises/robot-name/HINTS.md b/exercises/robot-name/HINTS.md new file mode 100644 index 00000000..a9938dda --- /dev/null +++ b/exercises/robot-name/HINTS.md @@ -0,0 +1,5 @@ +## Hints +Make sure your solution is general enough to be easily scalable for longer names containing more letters and digits. This usually makes for better code quality, too. + +Suggestion (this is not explicitly tested): +To make sure you always have a unique name you could implement your own cache or use a `Stream` with its built-in cache.