Skip to content
Advertisement

Leetcode: Add Binary (Java) How can it perform addition between one char and one int?

JavaScript

Apparently, this code works for the solution, I’m just having a hard time understanding the question. For this line:

JavaScript

sum is an integer, a.charAt(len1) returns a char, how can it perform addition between an integer and a char? also, what does it mean to – ‘0’?

Advertisement

Answer

chars are essentially smaller ints with fancy printing associated to them. A char actually holds the unicode code for a specific character, and can be treated as an integer for addition and subtraction. A neat thing about this is that the characters that represents digits are sequential (‘0’ is followed by ‘1’, which is followed by ‘2’, etc). So if you subtract ‘0’ (i.e., “the unicode code for the character 0) from a char, you’ll get the actual digit it represents.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement