-
Python Challenges: Different ways of sorting lists part 2
- 2 Views
- 0 Likes
- 0 Comments
In this cast we will be making the very well-known sorting algorithm called Bubble sort. It is the simplest way of sorting lists so let's try it out!
-
Python Challenges: Different methods for sorting lists part 1
- 15 Views
- 0 Likes
- 0 Comments
Title says it all, we are going to make a small series explaining the different methods for sorting lists
-
TicTacToe: Update board function
- 8 Views
- 0 Likes
- 0 Comments
In this part of the series we're going to make a function that updates the board with our player's move!
-
TicTacToe: Making and printing the board
- 5 Views
- 0 Likes
- 0 Comments
Pretty self explanatory, we are going to create and print the board for our TicTacToe game
-
TicTacToe: Making the board
- 5 Views
- 0 Likes
- 0 Comments
Continuing on the tictactoe journey the most basic but most neccesary step of making the tictactoe board!
-
TicTacToe: Creacting the skeleton
- 11 Views
- 0 Likes
- 0 Comments
We are going to be making a simple but fun tictactoe game! In this cast we will just be creating a simple skeleton for our code :)
-
Python Challenges: Convert string to camel case
- 16 Views
- 1 Likes
- 0 Comments
Simple. We're given a string and we must convert it to camel case.
-
Python Challenges: Phone number problem
- 9 Views
- 0 Likes
- 0 Comments
We are given a list with 10 numbers in it, our job is to be given those ten numbers and turn them into a phone number in the following format: (123) 45...
-
Python challenges: String type counter
- 16 Views
- 0 Likes
- 0 Comments
We're given a string and we have to return the amount of uppercase letters, lowercase letters, special characters, and integers in a list
-
Python Challenges: Name Shuffler
- 7 Views
- 0 Likes
- 0 Comments
We are given a string with a first and last name, our job is to return a string with the last name first and the first name last. Hope I explained that...