User Profile

Collapse

Profile Sidebar

Collapse
Ri0o
Ri0o
Last Activity: Dec 7 '09, 07:36 AM
Joined: Nov 2 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ri0o
    Ri0o posted a Visitor Message for kudos
    hi , are you still there
    if you are then plz plz plz help me
    there is only 3 hours left to sumbit the assignment
    See more | Go to post

  • Ri0o
    Ri0o posted a Visitor Message for kudos
    hi thx for replying it's due after 4 hours
    i really need some help i'm stucked and this assignment worth 6% plz help me
    and i have no idea how to do it plz plz help me here is my email if u can't write on this website
    mido251088@yaho o.com no capitals or spaces
    See more | Go to post

  • Ri0o
    replied to sudoku solver problem
    thx alot now the only thing is left is this
    I tried doing it before posting but i just can't so this is the partial solution
    Code:
    import copy
    
    def display(A):
        if A:
            for i in range(9):
                for j in range(9):
                    if type(A[i][j]) == type([]): print A[i][j][0],
                    else: print A[i][j],
                print
            print
    ...
    See more | Go to post

    Leave a comment:


  • Ri0o
    started a topic sudoku solver problem

    sudoku solver problem

    hi, i have to make a sudoku solver using python quickdraw,
    i've started on it and this is what i got so far
    here is the link to the assignment
    http://pages.cpsc.ucal gary.ca/~zongpeng/CPSC231/assignments/A4/a4.pdf
    Code:
    def solveRows():
        """eliminates solved numbers by row"""
        for x in range(0, 81, 9):
            row = puzzle[x : x+9]#loops through each row
    ...
    See more | Go to post

  • Ri0o
    started a topic making a pie chart question

    making a pie chart question

    hi, i'm new in python programming
    i'm trying to write a simple program that processes a text file containing grades for a class, extracts the desired grades, count the number of grades in each grade segment and genrate a pie chart for grades,(A1) .
    http://pages.cpsc.ucal gary.ca/~zongpeng/CPSC231/assignments/A3/a3.pdf

    txt file:http://pages.cpsc.ucal gary.ca/~zongpeng/CPSC231/assignments/A3/grades1.txt

    i...
    See more | Go to post
No activity results to display
Show More
Working...