Explorers – Using Genetic Algorithm

In computer science and operations research, a genetic algorithm is a metaheuristic inspired by process of natural selection that belongs to the larger class of evolutionary algorithms. Genetic Algorithms are commonly used to generate high-quality solutions to optimization and search problems by relying on bio-inspired operators such as mutation, crossover and selection. The Algorithm Step…

#CodingOf218

With a great success last year on #CodingOf208, I have decided to do this this year too! This year its going to be “#CodingOf218”! What is #CodingOf218 Similar to last year, I am again going to challenge myself in 2018 to code for 218 days where the challenge is to not miss any days between and…

Stacks in Python Using PyGame

Stacks is an Android Game developed by Ketchapp Games. And here I attempt to code the same in Python! Here is the link to original game : Stacks on Play Store The Game The rules are simple, make your stack is as big as possible! If any portion of “brick” is outside the previous brick, the…

8 Ball Pool in Python

If you guys have been checking your tweeter, I asked which Android Game should I code as this week’s challenge, and the votes decided “8 Ball Pool”! This version is single Player. You Can Download the Original Android Game Here : Google Play Store : 8 Ball Pool The Game Eight-ball (often spelled 8-ball or eight ball, and sometimes called solids…

Chain Reaction in Python

So a few days back I tweeted asking whether I should code an Android Game called Chain – Reaction, well their were a few responses, but all positive! So I decided to code it! So here it is, Chain Reaction Using Pygamein Python! The Game Chain reaction is a deterministic combinatorial game of perfect information for 2 –…

Random Walker In Python

I attempt to code basic 2-D random walker. But what is Random Walker. What is a Random Walk? A random walk is a mathematical object, known as a stochastic or random process, that describes a path that consists of a succession of random steps on some mathematical space such as the integers. An elementary example of a random walk is the random…

Space Invaders in Python

Space Invaders in a 2-D fixed shooting game, I attempt to code the same using PyGame in Python. The Game Space Invaders is an arcade video game created by Tomohiro Nishikadoand released in 1978. It was originally manufactured and sold by Taito in Japan, and was later licensed for production in the United States by the Midway division of Bally. Space Invaders is one of the…