As I discussed in an earlier post, I recently graduated from the Flatiron School's online immersive full stack bootcamp. For the past few weeks I h...
For further actions, you may consider blocking this person and/or reporting abuse
Do you have the big long string of text? You've got me hooked and I want to solve it, but it seems like it would be more fun to actually get the secret word at the end :)
Hey Ryan,
Not sure why, but my paste of the long string in this comment did not come in correctly as was mentioned below. You can find it on repl.it at repl.it/MivX.
Enjoy! :)
Ben
Victory! I found an interesting performance quirk, at least for Ruby. Thanks for a great puzzle and write-up!
Your solution in Ruby is awesome. I also love the dedication to benchmarking your two different variations and very interesting results on
.count
and it's optimization. I didn't know that before. Overall, Ruby is just plain awesome.Thanks! Yeah, I was super sure the way you did it would be faster. Ruby is one of my favorite things!
Running against the blob above it seems the answer is a word followed by some misc character (the last 4 almost spelling out an f-bomb). Did I get the right answer or is something off? I did a codepen with your code and it seems to give the same answer.
For those interested, I put this up on repl.it. I'm not sure why but my paste in the comment above of the very long string did not paste correctly. The repl.it has the correct long string: repl.it/MivX
My solution. In python.
Probably not the most elegant way... I really need more practice with Rust :D
Great Post! Thanks!
My C# approach would be something like this:
The problem with fast shooting, is always the same, mistakes! :/
@benhayehudi this is a great write-up. Really highlights the way you approached and then solved the problem. As a Javascript novice myself, I appreciated the step-by-step explanation of the decisions you made.
How did this coding challenge compare to others you've taken?
Thanks Peter!
This coding challenge ranked as a bit more involved for an initial challenge, i.e. as a requirement for inclusion with a resume submission and not something to do after an initial phone screen. I think it's actually a smart way for a place to be more upfront about their needs and skills required before taking up too much time of the people interested and their own time.
Hey!
Can someone check my python solution? Any hints where/how can the code be better?
repl.it/Mnem/0
TY
Hi! A couple of notes that you can take or leave.
You don't necessarily have to loop through and initialize each key for
strngs
manually. Here's a couple of alternatives.You can use shorthand notation if you're modifying a value inplace.
You can use
dict.items
to get a list of pairs out of a dict that is much easier to sort. Then you don't have to manually sort and delete items out of your dict.Some things to look up here for more information:
In general, when you're building a string, it's usually more performant, easier, and less error prone to build the whole thing as a list and
join
it at the end.Here's a link on list comprehensions
Hopefully this helps. I'm not sure how comfortable you are with Python, so I tried to cover everything. Let me know if you have any questions 😁
Here's a py3 version using the builtin dict and iterators:
from operator import itemgetter
long_string = "..."
counter = dict()
for c in iter(long_string):
counter[c] = counter.get(c, 0) + 1
sorted_chars = [k for (k, v) in sorted(counter.items(), key=itemgetter(1), reverse=True)]
word = "".join(sorted_chars[:sorted_chars.index('_')] )
print(word)