sekkurocode / Cellular-Automata

Development of a python software, simulating "Cellular Automata".
MIT License
1 stars 0 forks source link

issue6 #8

Closed fabrice-eberle closed 5 months ago

fabrice-eberle commented 7 months ago

@sekkurocode @Sara25s @redibaj

I added the basic check neighborhood loop. Please check wether it should habben in an own class, an other function or under board. I tested it outside the function in an own file and it worked. Let´s finish the class so we can test it inside our main python. More describing comments must be added.

sekkurocode commented 7 months ago

Hey I did you test the code before running it? There's no import of random library, which shouldn't allow the code to run properly. After that correction i think it's good to be merged :)

sekkurocode commented 7 months ago

Oh I just noticed while implementing your code, that your names for variables follow the camel case convention so: "camelCase". Instead you should always use snake case while writing pythonic code. Snake case would be: "snake_case".