-
Introduction to: Python coding challenges
- 505 Views
- 0 Likes
- 0 Comments
Introduction to my python series while solving a basic coding challenge :)
-
Python Challenges: Are your grades really *that* good?
- 90 Views
- 1 Likes
- 0 Comments
You got a test, did it, passed it, but did you do better than average of all your classmates scores?
-
Python Challenges: Convert string to camel case
- 205 Views
- 1 Likes
- 0 Comments
Simple. We're given a string and we must convert it to camel case.
-
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
-
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: 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: List with reversed number
- 137 Views
- 0 Likes
- 0 Comments
Simple, we are given a number and we have to return a list with the reversed number
-
Python Challenges: Name Shuffler
- 101 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...
-
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: Phone number problem
- 102 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...