Readability before speed?
To what extent is faster code significantly more complex/unreadable? I'd like some examples of why, as I can't agree with that. I think it's more a question of how you're used to programming code.
To what extent is faster code significantly more complex/unreadable? I'd like some examples of why, as I can't agree with that. I think it's more a question of how you're used to programming code.
Hello, I have to submit an assignment for my university. The assignment involves HTTP messages. I'm supposed to filter out the IDs of requests that don't have a response. My solution works but is very slow. Can I use threads or futures to speed up my solution so that the checkForDupes method is executed in…