Code Monkey home page Code Monkey logo

collatz-sequence's Introduction

collatz-sequence

This is my solution for the assignment at the end of Chapter 3 in "Automate the Boring Stuff with Python" - a simple program for executing the collatz sequence. If you don't know what the collatz sequence is, check out its Wikipedia entry.

The program allows the user to enter any postive number.
If the input is valid (see below), it is converted into an integer and passed into the collatz function.
The collatz function checks if the current integer is even or odd:

  • if it is odd, it gets multiplied by 3 and then 1 is added
  • if it is even, it gets divided by 2 with floor division to prevent a floating number
When the integer reaches 1, the function ends and returns to the main loop.
At this point the user can decide to collatz another number or end the program.

Input Validation

Prevents the following situations:

  • a string or symbol being entered
  • a negative number being entered

collatz-sequence's People

Contributors

aclongo avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.