Tagged Questions

197
votes
81answers
12k views

Interview question: f(f(n)) == -n

A question I got on my last interview: Design a function f, such that: f(f(n)) == -n Where n is a 32 bit signed integer; you can't use complex numbers arithmetic. If you can't design …
86
votes
24answers
30k views

Fastest way to determine if an integer’s square root is an integer

I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but …
74
votes
30answers
4k views

“Plumber” Programmers vs. Computer Scientists

I'm a self taught programmer pushing 40 years old, and a self admitted "plumber programmer" that relies pretty heavily on APIs. I slowly play catch up on my understanding of how to properly implement …
54
votes
43answers
5k views

Code Golf: Evaluating Mathematical Expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web). Write a function that takes a single argument that is a …
37
votes
51answers
5k views

Is mathematics necessary for programming?

Hello all, I happened to debate with a friend during college days whether advanced mathematics is necessary for any veteran programmer. He used to argue fiercely against that. He said that …
31
votes
41answers
3k views

What’s the highest-level math you’ve used in the real world?

What's the highest-level math you've used in the real world? What did you need it for? Where did you learn it (in school, by yourself)? (Incidentally, I do mean in a programming context, as this is …
31
votes
23answers
2k views

What are the core mathematical concepts a good developer should know?

Since Graduating from a very small school in 2006 with a badly shaped & outdated program (I'm a foreigner & didnt know any better school at the time) i've come to realize that i missed a lot …
30
votes
7answers
3k views

How to check if a number is a power of 2

Today I needed a simple algorithm for checking if a number is a power of 2. The algorithm needs to be: Simple Correct for any ulong value. I came up with this simple algorithm: private bool …
28
votes
12answers
7k views

Algorithm to detect intersection of two rectangles?

I'm looking for an algorithm to detect if two rectangles intersect (one at an arbitrary angle, the other with only vertical/horizontal lines). Testing if a corner of one is in the other ALMOST works. …
27
votes
18answers
2k views

Why can’t decimal numbers be represented exactly in binary?

There have been several questions posted to SO about floating-point representation. For example, the decimal number 0.1 doesn't have an exact binary representation, so it's dangerous to use the == …
26
votes
23answers
1k views

What programming jobs would be best for a mathematician?

I'm a math professor that is losing his job, and I'm trying to gain programming skills, since academic jobs are scarce these days. Are there particular types of programming jobs that I should try to …
25
votes
11answers
1k views

How does one make a Zip bomb?

This question about zip bombs naturally led me to the Wikipedia page on the topic. The article mentions an example of a 45.1 kb zip file that decompresses to 1.3 exabytes. What are the …
24
votes
3answers
5k views

What’s the difference between Math.Floor() and Math.Truncate() in .NET?

What is the difference between Math.Floor() and Math.Truncate() in C#?
23
votes
5answers
6k views

C# Round up

I want to ensure that a division of integers is always rounded up if necessary, is there a better way than this, there is a lot of casting going on :-) (int)Math.Ceiling((double)myInt1 / myInt2)
23
votes
4answers
1k views

Why C++ cannot be parsed with a LR(1) parser?

I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page: "Many programming languages can be parsed using some variation of an LR parser. One …

1 2 3 4 5 93 next
15 30 50 per page