I want to edit a binary file, but I don't want to use another tool other than Visual Studio because it&ap
Are there any trick or extension to select all instances of selected word in visual studio code, to facilitate
Before the confusion begins, this question is about Code, the new lightweight Visual Studio Editor. You can ge
Is there a way to force Sublime Text 2 to always indent two spaces per tab when working with Ruby files? I kn
I have a file, xyz.cpp. I want to open two instances of this file in Visual studio (BTW, I am using Visual St
Using Microsoft's Visual Studio Code, how do I duplicate a line of code and then move it up and down? (Si
I am making the effort to learn Vim. When I paste code into my document from the clipboard, I get extra space
It should be trivial, and it might even be in the help, but I can't figure out how to navigate it. How do
I am to show that log(n!) = Θ(n·log(n)). A hint was given that I should show the upper bound with nn and sh
For example, int result; result = 125/100; or result = 43/100; Will result always be the floor of the
What is the most efficient way given to raise an integer to the power of another integer in C? // 2^3 pow(2,3
For example: 9 / 5 #=> 1 but I expected 1.8. How can I get the correct decimal (non-integer) result? Wh
Having a list of points, how do I find if they are in clockwise order? For example: point[0] = (5,0) point[1
This is the best algorithm I could come up. def get_primes(n): numbers = set(range(n, 1, -1)) primes
How do I calculate distance between two GPS coordinates (using latitude and longitude)?
Is there a benefit to using one over the other? In Python 2, they both seem to return the same results: >&
In JavaScript, how do I get: The whole number of times a given integer goes into another? The remainder?
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is
In R, I have an element x and a vector v. I want to find the first index of an element in v that is equal to x