I'm trying to make the game KenKen in Python.
I need some help with the pseudocode. What data types required to store and process the game information as it progresses and completes?
I'm trying to make the game KenKen in Python.
I need some help with the pseudocode. What data types required to store and process the game information as it progresses and completes?
By the sound of your question, babikar, you assumedly have very little knowledge of game programming in any language? If so, I advise that you start by looking for tutorials and books to read about both game programming in Python, and in general - the theory is usually language independent. You cannot expect people here to just give you psuedo-code - that requires time and effort for something that they would get nothing from. Creating psuedo-code can be just as hard, if not harder than writing the actual code - you are basically asking us to create your game for you.
I suggest this should be your first search.
EDIT:
To expand slightly and meet your question about actual game psuedo-code more - what exactly do you want to make, in terms of a 'KenKen' game. Is it a KenKen solver - a program that you give a KenKen puzzle to and it gives you the answer - or a KenKen generator - one that creates a KenKen puzzle for you to solve (and probably has other features too)?
Here is a post on a KenKen solver in Python - but if you are going to make one of these, I wouldn't read his code or it will just ruin the making for you.