Ad
  • Custom User Avatar

    Your comment really helped me to save this Kata. I was convinced my code worked, but you pointed out the subtle difference.

  • Custom User Avatar

    My computer is out of order :-(

  • Custom User Avatar

    The wording in the kata description is confusing (or maybe even plain wrong). The n-th term is not the same as f(n). Example f(10) = 236, but the 10th term in the sequence is f(9), the one before (remember we count from 0).
    So the description should be changed from "Your task is to give the number of total values for the odd terms of the sequence up to the n-th term (included)." to "Your task is to give the number of total values for the odd terms of the sequence up to and including f(n)."

  • Custom User Avatar

    The wording in the kata description is confusing (or maybe even plain wrong). The n-th term is not the same as f(n). Example f(10) = 236, but the 10th term in the sequence is f(9), the one before (remember we count from 0).