-
Python Challenges: Predicting your age!
- Jul 21, 2022, 6:29 PM UTC
- 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
- Jul 20, 2022, 3:03 AM UTC
- 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
- Jul 18, 2022, 7:21 PM UTC
- 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
- Jul 18, 2022, 1:48 AM UTC
- 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
- Jun 26, 2022, 5:00 PM UTC
- 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
- Jun 17, 2022, 8:38 PM UTC
- 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
- Jun 13, 2022, 12:51 AM UTC
- 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
- Jun 11, 2022, 7:44 PM UTC
- 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
- Jun 11, 2022, 7:42 PM UTC
- 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
- Jun 11, 2022, 4:38 PM UTC
- 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 :)