Python Forum
is there a way to optimize my checking system?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
is there a way to optimize my checking system?
#1
I am coding tic tac toe with lists (not 2d lists, this project was suggested by my teacher) and I want to go above and beyond, so I want to optimize my program as much as possible.

Right now, the part of the program that sticks out like a sore thumb, the checker.

Here is the code
def check(): #will check if Player One/Two has won
    R1CX = Row1.count("X") #side check
    R2CX = Row2.count("X")
    R3CX = Row3.count("X")
    R1CO = Row1.count("O")
    R2CO = Row2.count("O")
    R3CO = Row3.count("O")
    if R1CX == 3 or R2CX == 3 or R3CX == 3:
        print("X Wins!")
        
    if R1CO == 3 or R2CO == 3 or R3CO == 3:
        print("O Wins!")

        
    if Row1[2] == "X" and Row2[1] == "X" and Row3[0] == "X": #dia check
        print("X Wins!")
    if Row1[0] == "X" and Row2[1] == "X" and Row3[2] == "X":
        print("X Wins!")
        
    if Row1[2] == "O" and Row2[1] == "O" and Row3[0] == "O":
        print("O Wins!")
    if Row1[0] == "O" and Row2[1] == "O" and Row3[2] == "O":
        print("O Wins!")

    if Row1[0] == "X" and Row2[0] == "X" and Row3[0] == "X": #upanddown check
        print("X Wins!")
    if Row1[1] == "X" and Row2[1] == "X" and Row3[1] == "X":
        print("X Wins!")
    if Row1[2] == "X" and Row2[2] == "X" and Row3[2] == "X":
        print("X Wins!")

    if Row1[0] == "O" and Row2[0] == "O" and Row3[0] == "O": 
        print("O Wins!!")
    if Row1[1] == "O" and Row2[1] == "O" and Row3[1] == "O":
        print("O Wins!")
    if Row1[2] == "O" and Row2[2] == "O" and Row3[2] == "O":
        print("O Wins!")
By using count I saved myself a few lines but I don't think there is any way to check across lists (again, I have to use regular lists)

If anyone can point me in the right direction, that would be great! Thanks in advance.
Reply


Messages In This Thread
is there a way to optimize my checking system? - by GalaxyCoyote - Oct-12-2019, 10:13 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I multithread to optimize a groupby task: davisc4468 0 709 Jun-30-2023, 02:45 PM
Last Post: davisc4468
  do you have an idea to optimize this code[recursion]]? netanelst 4 1,296 May-20-2022, 06:41 PM
Last Post: jefsummers
  Optimization using scipy.optimize KaneBilliot 3 1,907 Nov-30-2021, 08:03 AM
Last Post: Gribouillis
  Using curve_fit to optimize function (TypeError) Laplace12 4 2,517 Aug-30-2021, 11:15 AM
Last Post: Larz60+
  Difference between os.system("clear") and os.system("cls") chmsrohit 7 16,640 Jan-11-2021, 06:30 PM
Last Post: ykumar34
Question Difference between Python's os.system and Perl's system command Agile741 13 6,841 Dec-02-2019, 04:41 PM
Last Post: Agile741
  cannot import scipy.optimize.Bounds larkypython 2 7,244 May-05-2019, 04:09 AM
Last Post: larkypython
  Optimize unittest loading Nazz 3 2,548 Mar-05-2019, 11:59 AM
Last Post: Nazz
  optimize choices in multiple if ---: statements Pedroski55 2 2,896 Dec-25-2018, 05:06 AM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020