-
Python Challenges: Predicting your age!
- 57 Views
- 0 Likes
- 0 Comments
In this codecast we will be implementing a formula that supposedly can predict your age! Let's try it out :)
-
Python Challenges: WiErD StRiNg CaSeS
- 72 Views
- 0 Likes
- 0 Comments
Basically in this codecast we're going to be covering a little bit of a more difficult challenge that's still very beginner friendly :) It involves not...
-
Python Challenges: Nth power
- 78 Views
- 0 Likes
- 0 Comments
In this codecast we are given an array and n (which is a non-negative number) we have to find the result of that array's nth index to the power of n. T...
-
Python Challenges: Fizzbuzz
- 51 Views
- 1 Likes
- 0 Comments
Today we're doing the classic interview challenge, Fizzbuzz! It's a very beginner friendly problem :)
-
Python Challenges: Different ways of sorting lists part 2
- 88 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
- 114 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
- 126 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
- 91 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
- 63 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
- 172 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 :)