I'm a Sr. Software Engineer at Flashpoint. I specialize in Python and Go, building functional, practical, and maintainable web systems leveraging Kubernetes and the cloud. Blog opinions are my own.
Hi! Thanks for the .get(letter, 0) tip. I've added it to the post, since I definitely agree that that's the best solution.
As far as the LETTER_SCORES variable goes, that was actually just provided as part of the setup of the problem, so I didn't bother to change that. You'll have to submit a pull request on the original repo :)
Thanks again for reaching out, though. I always love to learn that thing that makes my code that much cleaner!
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
You could also just use
dict.get(letter, 0).There's also no need to use
"D G"and then.split(), you could just do:i.e.:
Hi! Thanks for the
.get(letter, 0)tip. I've added it to the post, since I definitely agree that that's the best solution.As far as the LETTER_SCORES variable goes, that was actually just provided as part of the setup of the problem, so I didn't bother to change that. You'll have to submit a pull request on the original repo :)
Thanks again for reaching out, though. I always love to learn that thing that makes my code that much cleaner!