Category Archives: Uncategorized

The Odyssey

I watched this film recently. Undeniably it is an epic film, but is it faithful to it’s source material? At almost 3 hours running time, it contains a lot of the material from the original poem. However, it seems to … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

8 Queens Problem

Today, we are going to look at the classic problem of placing Queens on a chessboard, such that no Queen is attacking any other Queens. It’s immediately obvious that we cannot place more than 8 Queens and meet these conditions, … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

10 Digit Number Puzzle

In my previous post I shared some code to generate permutations. We can use this code to solve a problem I’ve posted about previously. Find the only 10 digit number which uses each of the digits 0 – 9 and … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Dragon Age – The Veilguard

I played the first game in the Dragon Age series (‘Origins’) many, many years ago. It was an absolutely enthralling game. The choices you made in the game effected the entire game-world. Please see here for my initial reactions to … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Generating Permutations in Javascript

I’ve recently been working on a number puzzle which involved generating permutations. It involves finding permutations of a ten digit number. I decided to code this in Javascript. I found the following on Wikipedia: The following algorithm generates the next … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment