Ad
  • Default User Avatar

    Instead of having magic numbers 65 and 97, I guess it would be better to write 'a' and 'A'. And in the last for loop, instead of pangram=false and break, you can directly return false. You actually do not need the pangram boolean. But nice solution, it's clear and readable. :)