loading...
We're a place where coders share, stay up-to-date and grow their careers.
A programmer who is trying to become a full-stack developer.
Education
B.Sc in Computer Science
Associate Software Engineer at Oil Price Information Service
Recent comments
Ten Tips for Becoming an Elite Developer
That number 10, lol. Is this a troll article?
3 ways to find if a number is Odd/Even in Python
I'd just do this: numType = "even" if num % 2 == 0 else "odd"
Clean Code Using Null Conditional Operator and Coalescing Operator
New to C# and this is a very clear example. Thanks!
When is a quick and dirty hack justified?
IMO, quick and dirty hack is convenient for hackathon project...