Tagged Questions
4
votes
8answers
238 views
What is the fastest way to return x,y coordinates that are present in both list A and list B?
I have two lists (list A and list B) of x,y coordinates where 0 < x < 4000, 0 < y < 4000, and they will always be integers. I need to know what coordinates are in both lists. What would be ...
2
votes
3answers
3k views
Creating a cout function in C?
This is a totally hypothetical question, but I have to know the answer.
I assume most C++ compilers are written in assembly. Which makes them different languages entirely (I could be wrong). That ...