Tagged Questions
3
votes
2answers
184 views
Am I writing good Go here? Python functions converted to Go
I originally asked this question on StackOverflow. Reproduced here by recommendation.
I've got a number of Python scripts that I'm considering converting to Go. I'm seeking confirmation that I'm ...
2
votes
2answers
291 views
code review for count then sort problems (go lang)
the question is simple, for a input [apple, banana, orange, apple, banana, apple], the program will count it as a map: {apple : 3, orange: 1, banana: 2}, then sort this map by it's values, get ...