User dack - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T08:46:05Zhttp://stackoverflow.com/feeds/user/107586http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions1How to parse a string to an integer without library functions?dack2009-05-15T09:18:08Z2009-06-23T17:30:49Z
<p>Hi,</p>
<p>I was recently asked this question in an interview:</p>
<p>"How could you parse a string of the form '12345' into its integer representation 12345 without using any library functions, and regardless of language?"</p>
<p>I thought of two answers, but the interviewer said there was a third. Here are my two solutions:</p>
<p>Solution 1: Keep a dictionary which maps '1' => 1, '2' => 2, etc. Then parse the string one character at a time, look up the character in your dictionary, and multiply by place value. Sum the results.</p>
<p>Solution 2: Parse the string one character at a time and subtract '0' from each character. This will give you '1' - '0' = 0x1, '2' - '0' = 0x2, etc. Again, multiply by place value and sum the results.</p>
<p>Can anyone think of what a third solution might be?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/885855/css-margin-auto/885875#8858750Answer by dack for CSS : Margin Autodack2009-05-20T02:14:30Z2009-05-20T02:14:30Z<p>Centering block level elements in IE can be tricky. If you want to center the main portion of the site ('wrapper' in your example) then you can do the following:</p>
<pre><code>body {
text-align: center;
}
#margin {
text-align: left;
}
</code></pre>
<p>This will cause IE to center everything on the page up to and including #margin, and then left-align everything inside #margin, which is essentially the same as just centering #margin.</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867749#867749Comment by dack on How to parse a string to an integer without library functions?dack2009-05-15T09:41:04Z2009-05-15T09:41:04ZYeah, that's probably right. Thanks!