Refactoring from DynamicVector to a different data structure?
I'm currently teaching myself Mojo by porting the solutions to Codewars katas in Python over to the new language.
The "safecracker" problem asks you to write a function that returns a tuple of three integers.
My Python solution used the tuple type. My Mojo solution uses DynamicVector in place of tuple.
There must be a better way to do it than that, surely?
I'm having difficulty with the official docs (skill issue on my part). Suggestions welcome. Help appreciated.
The "safecracker" problem asks you to write a function that returns a tuple of three integers.
My Python solution used the tuple type. My Mojo solution uses DynamicVector in place of tuple.
There must be a better way to do it than that, surely?
I'm having difficulty with the official docs (skill issue on my part). Suggestions welcome. Help appreciated.
