Windows 10: Sudoku not saving progress

Discus and support Sudoku not saving progress in Windows 10 Gaming to solve the problem; If it helps Microsoft programmers to fix this problem, Sudoku saved our progress through November 12th. It stopped saving it in November 13th.... Discussion in 'Windows 10 Gaming' started by EdwardControne, Nov 20, 2020.

  1. Sudoku not saving progress


    If it helps Microsoft programmers to fix this problem, Sudoku saved our progress through November 12th. It stopped saving it in November 13th. Whatever update occurred at this time screwed it up.

    :)
     
    EdwardControne, Nov 20, 2020
    #1
  2. GSquadron Win User

    Java sudoku

    A friend of mine gave me a java sudoku ready, i just modified the main part but looks like it
    doesn't show up anything (used the code in neatbeans and in eclipse too):
    Code: package javaapplication2; import java.util.*; public class Main { public static void main(String args[]){} Random generator = new Random(); int[] serie = new int[9]; int[][] sudoku = new int[9][9]; int[][] select = new int[9][9]; int livello; public Main(int livello) { this.livello = livello; for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { select[j] = -1; } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { sudoku[j] = -1; } } for (int i=0; i<9; i++) { serie = -1; } } private void genArray() { int numCas = Math.abs(generator.nextInt(9))+1; for (int i=0; i<9;i++) { if (i==0) { serie = numCas; } else { while (serie[0] == numCas || serie[1] == numCas || serie[2] == numCas || serie[3] == numCas || serie[3] == numCas || serie[4] == numCas || serie[5] == numCas || serie[6] == numCas || serie[7] == numCas || serie[8] == numCas) { numCas = Math.abs(generator.nextInt(9))+1; } serie = numCas; } } } private void generateSudoku() { for (int i=0; i<9; i++) { if (i==0) { for (int k=0; k<9; k++) { sudoku[k] = serie[k]; } } else if (i==2) { for (int k=0; k<6; k++) { sudoku[k+3] = serie[k]; } for (int k=0; k<3; k++) { sudoku[k] = serie[k+6]; } } else if (i==1) { for (int k=0; k<3; k++) { sudoku[k+6] = serie[k]; } for (int k=0; k<6; k++) { sudoku[k] = serie[k+3]; } } else if (i==3) { for (int k=0; k<8; k++) { sudoku[k+1] = serie[k]; } for (int k=0; k<1; k++) { sudoku[k] = serie[k+8]; } } else if (i==5) { for (int k=0; k<5; k++) { sudoku[k+4] = serie[k]; } for (int k=0; k<4; k++) { sudoku[k] = serie[k+5]; } } else if (i==4) { for (int k=0; k<2; k++) { sudoku[k+7] = serie[k]; } for (int k=0; k<7; k++) { sudoku[k] = serie[k+2]; } } else if (i==6) { for (int k=0; k<7; k++) { sudoku[k+2] = serie[k]; } for (int k=0; k<2; k++) { sudoku[k] = serie[k+7]; } } else if (i==8) { for (int k=0; k<4; k++) { sudoku[k+5] = serie[k]; } for (int k=0; k<5; k++) { sudoku[k] = serie[k+4]; } } else if (i==7) { for (int k=0; k<1; k++) { sudoku[i][k+8] = serie[k]; } for (int k=0; k<8; k++) { sudoku[i][k] = serie[k+1]; } } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } arrange(); for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } private void arrange() { int cas = Math.abs(generator.nextInt(3)); for (int i=0; i<9; i++) { if (cas == 0) { if (i == 0) { swap0(i); } else if (i == 3) { swap0(i); } else if (i == 6) { swap0(i); } } else if (cas == 1) { if (i == 0) { swap1(i); } else if (i == 3) { swap1(i); } else if (i == 6) { swap1(i); } } else if (cas == 2) { if (i == 0) { swap2(i); } else if (i == 3) { swap2(i); } else if (i == 6) { swap2(i); } } cas = Math.abs(generator.nextInt(3)); } } private void swap0(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+1][j]; sudoku[pivot+1][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap1(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+1]; sudoku[j][pivot+1] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap2(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } public void select() { int numX; int numY; genArray(); generateSudoku(); if (livello == 0) { for (int i=0; i<30; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 1) { for (int i=0; i<20; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 2) { for (int i=0; i<10; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } try { notifyAll(); } catch (Exception e) { } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } }[/quote] Where the problem is here? It compiles perfectly! Nothing shows on the screen *Confused Sudoku not saving progress :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Nov 20, 2020
    #2
  3. donnylad Win User
    Killer Sudoku needed

    Sorry Bree that is plain Sudoku and I would like Killer Sudoku, also I want to download it to install, thanks for your help.
    Len
     
    donnylad, Nov 20, 2020
    #3
  4. Sudoku not saving progress

    Microsoft Sudoku in Windows 10

    Hi Lance,



    Thank you for posting in Microsoft Community.

    I regret the inconvenience caused to you. Let me help you.



    In order to understand the issue in a better manner, please share the details.


    • What do you mean by “I selected to install and I am the owner”?

    • Can you see MS Sudoku icon in the menu?

    • Is there any other programs or applications causing the same issue?

    • Have you completed installing MS Sudoku? Was it successful?
    I suggest you to download MS Sudoku from the Windows Store and check if it works.

    Please reply with the details and updated status of the issue. We will be happy to assist you accordingly.



    Thank you.
     
    Aswin_Anand, Nov 20, 2020
    #4
Thema:

Sudoku not saving progress

Loading...
  1. Sudoku not saving progress - Similar Threads - Sudoku saving progress

  2. Sudoku games not being saved

    in Windows 10 Gaming
    Sudoku games not being saved: I haven't been able to save any Sudoku games since March 15th. Has Microsoft Games done any fixes yet? https://answers.microsoft.com/en-us/windows/forum/all/sudoku-games-not-being-saved/5e7ed129-bb19-4d78-8d56-c7037e4b12f3
  3. Microsoft Sudoku not saving

    in Windows 10 Gaming
    Microsoft Sudoku not saving: About time for a bit more info than early 2021 for a fix its not the first time this problem has occurred and its crazy that it hasn't been fixed in 4 months https://answers.microsoft.com/en-us/windows/forum/all/microsoft-sudoku-not-saving/1df5ad1c-b9e1-42b0-b521-949cdcbbb25a
  4. Sudoku daily challenge not saving online?

    in Windows 10 Gaming
    Sudoku daily challenge not saving online?: daily challenge not saved for the first ten days of Feb = is this being addressed? https://answers.microsoft.com/en-us/windows/forum/all/sudoku-daily-challenge-not-saving-online/af57ded0-d394-4af7-bc15-0fd9e305f0b2
  5. Ilomilo Plus is not saving progress

    in Windows 10 Software and Apps
    Ilomilo Plus is not saving progress: I just purchased the full game in Windows Store and it is not saving my progress, every time I start the game I start from the very beginning. I have created an Xbox profile and I am logged in, I can see my screen name in the top left corner in the main menu of the game....
  6. Microsoft Sudoku not saving

    in Windows 10 Gaming
    Microsoft Sudoku not saving: Since the latst update, my games are no longer being saved. Numerous people are reporting this. This is not specific to users, it's the update that failed. Any idea how to get this resolved? Steve...
  7. Sudoku isn't Saving High Scores

    in Windows 10 Gaming
    Sudoku isn't Saving High Scores: Sudoku stopped saving my high scores. Can anyone help please? What could be possible reasons for this? Thanks in advance. https://answers.microsoft.com/en-us/windows/forum/all/sudoku-isnt-saving-high-scores/01a85f51-3d62-4b2b-80df-115232ee9f4c
  8. Sudoku isn't Saving High Scores

    in Windows 10 Installation and Upgrade
    Sudoku isn't Saving High Scores: Sudoku stopped saving my high scores. Can anyone help please? What could be possible reasons for this? Thanks in advance. https://answers.microsoft.com/en-us/windows/forum/all/sudoku-isnt-saving-high-scores/01a85f51-3d62-4b2b-80df-115232ee9f4c
  9. Microsoft Mahjong not saving progress

    in Windows 10 Gaming
    Microsoft Mahjong not saving progress: I've been playing free on line Microsoft Mahjong for a couple of years now and love it. As of Nov. 1 the game no longer saves my progress. I've tried it through Edge, Chrome, and Firefox and the result is the same. Help! (I've also been having recurring multiple problems...
  10. System doesn’t save sudoku daily challenges

    in Windows 10 Customization
    System doesn’t save sudoku daily challenges: My system didn’t save the daily challenge when I played sudoku. For a few second a success badge appeares on the screen and then it goes away. But after the second competition it always saves. Why?...