Learn How to Work with Numbers and Strings by Implementing the Luhn Algorithm - Step 17

Tell us what’s happening:

In Step 17, the task is:
Within the verify_card_number function, create a variable odd_digits that contains every other digit of the card_number_reversed string.

I think the text has a typo. It should be:
“…contains every other odd digit…”

Is there a form or somewhere I can inform the team about this?
Thank you!

Challenge Information:

Learn How to Work with Numbers and Strings by Implementing the Luhn Algorithm - Step 17

the text is correct, “every other odd digit” means every fourth digit, skipping one odd digit and keeping the next. Instead we want every odd digit, so every other digit, or every second digit

Hi, I also came across this misunderstanding. Thank you for the clarification.