Windows 10: Sudoku on Windows 10

Discus and support Sudoku on Windows 10 in Windows 10 Gaming to solve the problem; Sudoku on Windows 10 keeps crashing. I asked for help and had a reply which entailed changing DNS, which I am not confident in doing. The fault... Discussion in 'Windows 10 Gaming' started by LesleyYoung, Feb 11, 2019.

  1. Sudoku on Windows 10


    Sudoku on Windows 10 keeps crashing. I asked for help and had a reply which entailed changing DNS, which I am not confident in doing. The fault resolved itself for a few days, but has started crashing again. Does anyone know how I can get around this? I have uninstalled and re-installed the app. Also rebooted computer. Nothing seems to work. I was enjoying playing this game, but if this keeps happening I will have to stop playing it.

    :)
     
    LesleyYoung, Feb 11, 2019
    #1

  2. 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, Feb 11, 2019
    #2
  3. Ahhzz Win User
    Windows 10 Tweaks

    Pressing “Windows+Pause Break” (it’s up there next to scroll lock) opens the “System” Window.

    Windows 10: In the new version of Windows, Explorer has a section called Quick Access. This includes your frequent folders and recent files. Explorer defaults to opening this page when you open a new window. If you’d rather open the usual This PC, with links to your drives and library folders, follow these steps:

    • Open a new Explorer window.
    • Click View in the ribbon.
    • Click Options.
    • Under General, next to “Open File Explorer to:” choose “This PC.”
    • Click OK


    credit to Lifehacker.
     
    Ahhzz, Feb 11, 2019
    #3
  4. GSquadron Win User

    Sudoku on Windows 10

    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 on Windows 10 :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Feb 11, 2019
    #4
Thema:

Sudoku on Windows 10

Loading...
  1. Sudoku on Windows 10 - Similar Threads - Sudoku

  2. Sudoku not letting me sign in under name just guest.

    in Windows 10 Software and Apps
    Sudoku not letting me sign in under name just guest.: I still can't sign into Microsoft sudoku and I sent a problem request almost 2 weeks ago. I'm signed into Microsoft acct, signed into Xbox and still it only comes up as a guest and will not sign me in under my gaming name Cameragirl52. My internet is good, I can get...
  3. Sudoku not letting me sign in under name just guest.

    in Windows 10 Gaming
    Sudoku not letting me sign in under name just guest.: I still can't sign into Microsoft sudoku and I sent a problem request almost 2 weeks ago. I'm signed into Microsoft acct, signed into Xbox and still it only comes up as a guest and will not sign me in under my gaming name Cameragirl52. My internet is good, I can get...
  4. Microsoft Sudoku not saving my daily challenge results

    in Windows 10 Gaming
    Microsoft Sudoku not saving my daily challenge results: After sign in issue resolved, Microsoft Sudoku not saving my daily challenge results. https://answers.microsoft.com/en-us/windows/forum/all/microsoft-sudoku-not-saving-my-daily-challenge/e853bfb1-886c-4e72-9bcc-68c59c0776f5
  5. Microsoft Sudoku not saving my daily challenge results

    in Windows 10 Software and Apps
    Microsoft Sudoku not saving my daily challenge results: After sign in issue resolved, Microsoft Sudoku not saving my daily challenge results. https://answers.microsoft.com/en-us/windows/forum/all/microsoft-sudoku-not-saving-my-daily-challenge/e853bfb1-886c-4e72-9bcc-68c59c0776f5
  6. Microsoft Sudoku Problem with sign in

    in Windows 10 Gaming
    Microsoft Sudoku Problem with sign in: I can't sign into Microsoft Sudoku. When I try, it flashes the Xbox sign-in splash screen and immediately goes back to the Sudoku games screen. Everything worked well until a few days ago....
  7. Microsoft Sudoku Problem with sign in

    in Windows 10 Software and Apps
    Microsoft Sudoku Problem with sign in: I can't sign into Microsoft Sudoku. When I try, it flashes the Xbox sign-in splash screen and immediately goes back to the Sudoku games screen. Everything worked well until a few days ago....
  8. New issue with Microsoft Sudoku? Keyboard input doesn't work for a second or so after a...

    in Windows 10 Gaming
    New issue with Microsoft Sudoku? Keyboard input doesn't work for a second or so after a...: I've played this game a LOT in the past. Recently, the behavior has changed, making it VERY frustrating to play.Normally, I use the mouse to select cells, and the keyboard to enter numbers. That worked great in the past and allows you to make very fast progress.Recently,...
  9. New issue with Microsoft Sudoku? Keyboard input doesn't work for a second or so after a...

    in Windows 10 Software and Apps
    New issue with Microsoft Sudoku? Keyboard input doesn't work for a second or so after a...: I've played this game a LOT in the past. Recently, the behavior has changed, making it VERY frustrating to play.Normally, I use the mouse to select cells, and the keyboard to enter numbers. That worked great in the past and allows you to make very fast progress.Recently,...
  10. WHY AM I UNABLE TO SIGN IN TO MY MICROSOFT SUDOKU ACCOUNT?

    in Windows 10 Software and Apps
    WHY AM I UNABLE TO SIGN IN TO MY MICROSOFT SUDOKU ACCOUNT?: I HAVE CHECKED FOR UPDATES AND TRIED REPAIRING THE APP. I HAVE ALSO UNINSTALLED AND REINSTALLED. I CAN SIGN IN TO XBOX AND MY OTHER MICROSOFT GAMES. IT IS LIKE THE SERVER IS NOT WORKING PROPERLY....