Search:

Type: Posts; User: LordZeth

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    4,706

    int Process(char spaces[][8], int counter, int...

    int Process(char spaces[][8], int counter, int &group, int x, int y)
    {
    if(spaces[x][y] == "w")
    {
    counter++
    if(spaces[x+1][y] == "w")
    ...
  2. Replies
    5
    Views
    4,706

    Counting certain characters in recursion

    Hey, I'm trying to write a function that uses recursion to count the number of w characters within a group in an array.

    wbbwwbww
    bbbbwbww
    wwwbbwww
    wbwbwwbb
    wbwwwbwb
    wbbbbwww
    wbwbbwww...
Results 1 to 2 of 2