Windows 10: lost accomplishments and data on Sudoku

Discus and support lost accomplishments and data on Sudoku in Windows 10 Gaming to solve the problem; this is the third time at the end of a month I lost all my games for the entire month. This time I also lost everything since the game has been... Discussion in 'Windows 10 Gaming' started by StevenSekol, Nov 3, 2020.

  1. lost accomplishments and data on Sudoku


    this is the third time at the end of a month I lost all my games for the entire month. This time I also lost everything since the game has been upgraded, I was somewhere between level 45 and 50 and now I am level 1. I love playing this game but am tired of getting to the end of the month and everything is gone. I am not playing this again until it gets fixed and I am brought back up to my old level.

    :)
     
    StevenSekol, Nov 3, 2020
    #1

  2. Lost data from hard drive, what to do now?

    Well, I'm sorry to hear that it's a WD My Passport that failed on you, @tomhenry ! *Frown lost accomplishments and data on Sudoku :(
    I'd recommend you to try using a different USB cable with it and see if that will help your system to detect it without it disconnecting.
    I'd also suggest you to go to Disk Management and see how the drive is listed there. It won't hurt to check up on the health and SMART status of the HDD by running the QUICK and EXTENDED tests from the WD's Data LifeGuard Diagnostics. Here's a link to the available software: http://products.wdc.com/support/kb.ashx?id=11ZOpD

    Give these troubleshooting steps a try and keep us posted with the results!
    SuperSoph_WD
     
    SuperSoph_WD, Nov 3, 2020
    #2
  3. 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 lost accomplishments and data on Sudoku :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Nov 3, 2020
    #3
  4. donnylad Win User

    lost accomplishments and data on Sudoku

    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 3, 2020
    #4
Thema:

lost accomplishments and data on Sudoku

Loading...
  1. lost accomplishments and data on Sudoku - Similar Threads - lost accomplishments data

  2. Microsoft Sudoku Access Lost

    in Windows 10 Software and Apps
    Microsoft Sudoku Access Lost: Lost my "sign in" to Microsoft Sudoku and the app will not allow me to log in directly or through xbox. It says a am a "Guest" and my progress isn't being saved. Any ideas on how to repair?...
  3. Microsoft Sudoku Access Lost

    in Windows 10 Gaming
    Microsoft Sudoku Access Lost: Lost my "sign in" to Microsoft Sudoku and the app will not allow me to log in directly or through xbox. It says a am a "Guest" and my progress isn't being saved. Any ideas on how to repair?...
  4. Lost data

    in Windows 10 Gaming
    Lost data: I reset my pc yesterday and it formated the D drive that i had a lot of of important data on. I selected normal reset. Do you have any recomendations for recovering data? Any programs?...
  5. Lost data

    in Windows 10 Software and Apps
    Lost data: I reset my pc yesterday and it formated the D drive that i had a lot of of important data on. I selected normal reset. Do you have any recomendations for recovering data? Any programs?...
  6. Lost data

    in Windows 10 Software and Apps
    Lost data: last used my laptop 7/8 years ago. I bought in 2010.samsung R 520.As I could not open it. I got it repaired. And the I've lost all my data documents photos Apparently it was too old. Is there anyway I can retrieve my photos and documents....
  7. DATA LOST

    in Windows 10 Software and Apps
    DATA LOST: Good day, I just want to ask if any of you encounter a problem where SD Card not showing your files and folders? I mean, I just moved all my files from desktop to SD card. And all the files are in one folder.The files size is 120GB even after I moved it to SD Card, but my...
  8. Microsoft Sudoku daily challenge data lost

    in Windows 10 Gaming
    Microsoft Sudoku daily challenge data lost: I'm on Windows 10 version 2004 and have been playing Microsoft Sudoku Daily Challenge since before this new version started. It crashed so I uninstalled and reinstalled it. When I reloaded it to play the Daily Challenge all my statistics , awards and previous games were gone....
  9. Lost Data

    in Windows 10 Network and Sharing
    Lost Data: Lost data after Microsoft update. Edge replaced everything -- docs, videos, pics, restore points, browser, etc. How can I reclaim data without restore points? Thanks https://answers.microsoft.com/en-us/windows/forum/all/lost-data/c50c4691-93db-4f84-ac70-db1e1e6509a9
  10. Lost DATA

    in Windows 10 Installation and Upgrade
    Lost DATA: So basically I got a new PC, and as I wanted to Play Forza Horizon4, I lost all of my data and I´ve no idea what to do.... please help me [moved from German forums] https://answers.microsoft.com/en-us/windows/forum/all/lost-data/962731df-f922-4a70-8714-14367bd35730