Windows 10: Sudoku login

Discus and support Sudoku login in Windows 10 Software and Apps to solve the problem; For a long time I've had problems getting automatic logon when starting the game. Sometimes a computer restart helps. Today I was referred to Xbox to... Discussion in 'Windows 10 Software and Apps' started by Per-ErikNordström, Oct 10, 2018.

  1. Sudoku login


    For a long time I've had problems getting automatic logon when starting the game. Sometimes a computer restart helps. Today I was referred to Xbox to logon and then restart the game. Didn't work. Today nothing seems to help.

    :)
     
    Per-ErikNordström, Oct 10, 2018
    #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 login :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Oct 10, 2018
    #2
  3. Arun B J Win User
    Can't login to new computer w/Windows 10

    Hi,

    Thank you for your reply.


    • Are you able to login to Microsoft Account on Web?

    • Have you installed any language pack?
    I suggest you to follow the steps below and check if it helps.

    Step 1: I suggest you to select the appropriate language in login screen at the bottom right corner and check if it helps.

    Steps 2: Use On-screen keyboard in the login screen to login and check if it helps.

    Hope this helps. If the issue remains unresolved, please get back to us and we would be happy to help.
     
    Arun B J, Oct 10, 2018
    #3
  4. Sudoku login

    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, Oct 10, 2018
    #4
Thema:

Sudoku login

Loading...
  1. Sudoku login - Similar Threads - Sudoku login

  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....