CSE 130 - Programming Assignment #1 FAQ

  1. May I use the @ operator?

  2. No.

  3. May I use the mod function?

  4. Yes.

  5. Should palindrome be case sensitive?

  6. Yes.

  7. Can I use helper functions?

  8. Yes.

  9. Are we allowed to use the functions we defined ourselves?

  10. Yes (and you should be).

  11. What should palindrome return for ""?

  12. True.

  13. Do we have to handle negative numbers in digitsOfInt ?

  14. No - read the assignment. This is handled in the digits function.