Windows 10: sudoku

Discus and support sudoku in Windows 10 Software and Apps to solve the problem; when I open Microsoft Sudoku I get a web page open up offering me a free phone? I shut this down but a few mins later it opens up again and keeps... Discussion in 'Windows 10 Software and Apps' started by FallGuitar39082, Jun 1, 2019.

  1. sudoku


    when I open Microsoft Sudoku I get a web page open up offering me a free phone?

    I shut this down but a few mins later it opens up again and keeps repeating

    I uninstalled and reinstalled but now get web page saying I have a trojan?

    this again keeps opening every few mins

    how can I get rid of this?

    :)
     
    FallGuitar39082, Jun 1, 2019
    #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 :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Jun 1, 2019
    #2
  3. 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, Jun 1, 2019
    #3
  4. sudoku

    Microsoft Daily Challenge Sudoku

    Hi Mary,

    There are many possible reasons why you are experiencing issues with Microsoft Sudoku Daily Challenges. It is possible that the app needs an update or an error with the in-game server. To properly isolate your concern, please provide us the following information:

    • Did the issue start after an update?
    • What troubleshooting steps have you tried so far to resolve the issue?
    • Does the same issue occur on your other apps?

    In the meantime, we suggest that you install all the critical and important Windows Updates on your PC by following the steps on this

    link
    . You can also check for new app updates on Windows Store by performing the steps on this

    link
    .
     
    Loraine Mon, Jun 1, 2019
    #4
Thema:

sudoku

Loading...
  1. sudoku - 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....

Users found this page by searching for:

  1. Having problems with Microsoft Solitaire Collections - Suduko