Homework two at Udacity’s CS101 gave a little shock to more than a student. The third loop of question 5 was: n = any positive integer while n != 1: if n % 2 == 0: # the % means remainder, so this tests if n is even n = n / 2 else: n =
(More)…
Homework two at Udacity’s CS101 gave a little shock to more than a student. The third loop of question 5 was: n = any positive integer while n != 1: if n % 2 == 0: # the % means remainder, so this tests if n is even n = n / 2 else: n =
(More)…
I’m a great fan of e-learning, and I’m a computer engineer, so I decided to start a blog to share my ideas and comments about the e-courses that I’m taking right now. Or maybe even about the courses that I’m taking at my university. Right now I’m deep into AI and Robotics, I’m taking CS373 at
(More)…