Skip to content

Instantly share code, notes, and snippets.

@abd3lraouf
Created January 2, 2016 13:41
Show Gist options
  • Save abd3lraouf/58c36ea444544840e7e7 to your computer and use it in GitHub Desktop.
Save abd3lraouf/58c36ea444544840e7e7 to your computer and use it in GitHub Desktop.
public static int parseInt(char[] charArray) {
int sum = 0;
for (char c : charArray) {
sum = (sum * 10) + (c - '0');
}
return sum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment