Articles in this series
Python Beginner/Intermediate Project · Tic-tac-toe (American English) is also called noughts and crosses (Commonwealth English), or Xs and Os (Irish...
ECX 30 Days of Code: Day 1 List to Set Task Create a function that takes in a list as input, and returns (and prints) a new list with all repetitions...
ECX 30 Days of Code Day 2 Mode of a List Task Extend the function from day 1 to also print out the modal element(s) of the input list; i.e., to...
ECX 30 Days of Code Day 3 Palindromic Numbers Task A palindromic number is a number that remains the same when its digits are reversed. Write a...
ECX 30 Days of Code Day 4 Decimal to Hexadecimal. Task Without using the inbuilt hex() function, write a function that takes an integer as input, and...
ECX 30 Days of Code and Design Day 5 Fibonacci Task: Using recursion, write a function that prints out the first “n” members of the Fibonacci...