Windows 10: Sudoku won't load

Discus and support Sudoku won't load in Microsoft Windows 10 Store to solve the problem; For the past few days, I have been unable to play Microsoft Sudoku. When I click on the Sudoku icon it opens the first screen, never advancing or... Discussion in 'Microsoft Windows 10 Store' started by NickHarrah, Oct 16, 2020.

  1. Sudoku won't load


    For the past few days, I have been unable to play Microsoft Sudoku. When I click on the Sudoku icon it opens the first screen, never advancing or loading the app. I have attempted to reset the app, clear the cashe, and unistall/reinstall to no avail.

    :)
     
    NickHarrah, Oct 16, 2020
    #1
  2. tops Win User

    Skype won´t wok in 17063

    Skype Won´t work... games won´t work...

    Making backup and re-format...

    Maybe I Install a Windows 7 again, At least, all of my games run smoothly ...Sadness!!

    *Banghead
     
  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 Sudoku won't load :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Oct 16, 2020
    #3
  4. Sudoku won't load

    my n97 won t charge or connect

    when i put a usb on my n97 it won t charge when i put on the computer it won t say nokia pc suite or else it not reading the usb cannot work on my phone plz hel
     
    karim71---01, Oct 16, 2020
    #4
Thema:

Sudoku won't load

Loading...
  1. Sudoku won't load - Similar Threads - Sudoku won't load

  2. Microsoft Sudoku will not load

    in Windows 10 Gaming
    Microsoft Sudoku will not load: Microsoft Sudoku will not load - I have tried Repair, then Reset, and finally Reinstall without success https://answers.microsoft.com/en-us/windows/forum/all/microsoft-sudoku-will-not-load/0015a682-ba15-44a1-ba3d-cea67dfaccdd
  3. Microsoft Sudoku will not load

    in Windows 10 Software and Apps
    Microsoft Sudoku will not load: Microsoft Sudoku will not load - I have tried Repair, then Reset, and finally Reinstall without success https://answers.microsoft.com/en-us/windows/forum/all/microsoft-sudoku-will-not-load/0015a682-ba15-44a1-ba3d-cea67dfaccdd
  4. Microsoft Sudoku won't open.

    in Windows 10 Gaming
    Microsoft Sudoku won't open.: When I try to open Sudoku, it goes to the screen where it flashes numbers in the nine boxes and just keeps putting numbers in the boxes - the game won't open. I've tried wsreset.exe from responses to similar questions and it had no effect. I uninstalled/reinstalled MS Sudoku...
  5. Microsoft Sudoku won't open.

    in Windows 10 Software and Apps
    Microsoft Sudoku won't open.: When I try to open Sudoku, it goes to the screen where it flashes numbers in the nine boxes and just keeps putting numbers in the boxes - the game won't open. I've tried wsreset.exe from responses to similar questions and it had no effect. I uninstalled/reinstalled MS Sudoku...
  6. Microsoft Sudoku won't log me in.

    in Windows 10 Gaming
    Microsoft Sudoku won't log me in.: I've run the troubleshooter, tried looking for windows updates, logging out and logging back in and uninstalling and reinstalling the app. When I try to launch the app, the xbox login window flashes on the screen for a fraction of a second, but then I only get logged in as a...
  7. Sudoku won't load

    in Microsoft Windows 10 Store
    Sudoku won't load: For the past week, the game starts but never gets past the 'Loading' screen. This happens on both my PC and android phone. If I disconnect my Xbox Live account, it works. https://answers.microsoft.com/en-us/windows/forum/all/sudoku-wont-load/f01a498c-1480-4a67-aa56-e45b2530b9c0
  8. Microsoft Sudoku not loading games

    in Windows 10 Gaming
    Microsoft Sudoku not loading games: There was some kind of upgrade a few days ago. The next day Sudoku would not load and it still won't load several days later. I rebooted my computer and it installed updates but that didn't help....
  9. Microsoft Sudoku won't load after Windows Version Update 1903

    in Windows 10 Gaming
    Microsoft Sudoku won't load after Windows Version Update 1903: My computer performed the Windows 10 Feature update version 1903 yesterday. Today Microsoft Sudoku will not load. The blue title page displays for 1-2 seconds and then disappears. Solitaire, Ultimate Word Games and Mahjong all load properly. Sudoku worked fine 2 days ago....
  10. Free sudoku, Majong won't run

    in Windows 10 Gaming
    Free sudoku, Majong won't run: I d/l the free Sudoku game from the MS Store, and it said it was installed. It's on the Start Menu. I click it, and a window opens for about 2 seconds, then closes. Same for Majong. What gives? I'm logged in as local acct, but use a MSA to log into the store. 20030