CSE 130 - Programming Assignment #1 FAQ
-
May I use the @ operator?
No.
-
May I use the mod function?
Yes.
-
Should palindrome be case sensitive?
Yes.
-
Can I use helper functions?
Yes.
-
Are we allowed to use the functions we defined ourselves?
Yes (and you should be).
-
What should palindrome return for ""?
True.
-
Do we have to handle negative numbers in digitsOfInt ?
No - read the assignment. This is handled in the digits function.