@softwarewithnick: Wordle but for Python This free game allows you to come up with creative solutions to match a target display using Python code. There’s a new target display every day and it’s a fun way to practice your Python coding and logical thinking skills! Follow for more free coding resources ✅ #code #coding #Tech #learntocode #python
I have just gotten into coding and there is another game on steam which helps loads it's called (The Farmer Was Replaced) upgrade your farm really good to relax and learn
2026-07-17 10:36:48
935
kakaw :
i would just hard code all 25 cells every day lol
2026-07-17 02:41:24
3188
Collcroc123 :
There's a game on Steam called Replicube, exactly like this but it's 3D, uses lua, and the end results are fun models or patterns, like a chair or sphere. it also gives you a higher score the shorter your code is OR the more efficient it is (or both)!
2026-07-17 12:45:03
18
Ur mom :
Is it not basically the same code everyday?
2026-07-17 11:02:25
217
beatsbygang :
this game is so boring, you can always use the same solution. just adjust the colors and positions ;(
colors = {"B": "black", "R": "red"}
board = ["RBBRR", "BBRBR", "BBBBB", "BBBBB", "BBBRR"]
for y, row in enumerate(board):
for x, color in enumerate(row):
pydle(x, y, "", colors[color])
2026-07-17 17:07:40
33
Eric Orr :
If you like this, check out Replicube, it's in 3D!
2026-07-17 05:16:06
80
ThatDesignFeel :
25-element switch statement coming in!
2026-07-17 08:03:35
112
e :
Can I plug Claude code into this?
2026-07-17 02:22:07
10
Laxy :
Need to be some scoring system for smallest program, like someone pointed out you can just hardcode the write statements for each cell
2026-07-17 12:15:26
17
lint🇫🇷 :
can it run doom
2026-07-17 06:37:13
18
Duamutef :
Create a HTTP Client, have it get the website and then just take the result data from the page. 😂
2026-07-17 09:15:30
0
moqarni_ :
Just use Claude
2026-07-20 23:06:23
0
Pydle :
Thanks for posting.
2026-07-17 11:59:25
11
Jeffrey :
Really fun idea! But if the challenge is to do it in as less lines as possible, than essentially every puzzle is solvable with the same 2 line for-loop with a custom list of coordinates, colors and optional icon.
2026-07-17 09:58:35
5
Milkshake :
gonna need this but not daily. seems like a fun way to learn
2026-07-17 17:37:14
8
Jarich :
It would be better if it was a different algorithm every day
2026-07-17 13:14:25
9
Viole :
it's a bit too easy isn't it?
2026-07-17 13:23:51
5
Sparkzz :
I will probably learn more from this game then my entire coding class in college
2026-07-18 13:11:40
4
Shannon Johnas Davidson :
Well this would be fun if i were taught any of it in GCSE😔
2026-07-18 08:04:54
0
Bislington :
i would rather contort my insides out and start skipping with my intestines
2026-07-18 00:02:48
1
qazus :
what's the logic in pydle(x, y, "", "color")??
2026-07-17 11:20:48
1
umbreon222 :
Unless you hardcode the tiles everytime, isn't this more of a math challenge than a coding one? Finding some function to reproduce the expected output
2026-07-17 23:00:11
3
biscotti2459 :
this is similar to Replicube on steam. Fun game, but more complex. you have to write code to generate a 3d cube in a certain pattern
2026-07-18 11:08:10
5
To see more videos from user @softwarewithnick, please go to the Tikwm
homepage.