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. Today, 27th February 2025, Microsoft Sudoku started with me logged in rather than as a guest

    in Windows 10 Gaming
    Today, 27th February 2025, Microsoft Sudoku started with me logged in rather than as a guest: Today, 27th February 2025, Microsoft Sudoku started with me logged in as a username I neither registered nor wish to use. I always play as a guest and want to stay that way. How do I revert?...
  3. Today, 27th February 2025, Microsoft Sudoku started with me logged in rather than as a guest

    in Windows 10 Software and Apps
    Today, 27th February 2025, Microsoft Sudoku started with me logged in rather than as a guest: Today, 27th February 2025, Microsoft Sudoku started with me logged in as a username I neither registered nor wish to use. I always play as a guest and want to stay that way. How do I revert?...
  4. Restore purchases for add-ons to The Big Sudoku

    in Windows 10 Gaming
    Restore purchases for add-ons to The Big Sudoku: When I open up The Big Sudoku and go to add more, it shows my previous purchases but when I click on them to install it wants to charge me for them again. How do I add them back?...
  5. Restore purchases for add-ons to The Big Sudoku

    in Windows 10 Software and Apps
    Restore purchases for add-ons to The Big Sudoku: When I open up The Big Sudoku and go to add more, it shows my previous purchases but when I click on them to install it wants to charge me for them again. How do I add them back?...
  6. Sudoku Daily Challenge keeps looping after the 1st round.

    in Windows 10 Gaming
    Sudoku Daily Challenge keeps looping after the 1st round.: After completing the 1st round classic, irregular, ice break, it goes to loop starting with irregular, and it seems never end? https://answers.microsoft.com/en-us/windows/forum/all/sudoku-daily-challenge-keeps-looping-after-the-1st/ecb1d5d1-bced-4bab-871e-f779a83effd9
  7. Sudoku Daily Challenge keeps looping after the 1st round.

    in Windows 10 Software and Apps
    Sudoku Daily Challenge keeps looping after the 1st round.: After completing the 1st round classic, irregular, ice break, it goes to loop starting with irregular, and it seems never end? https://answers.microsoft.com/en-us/windows/forum/all/sudoku-daily-challenge-keeps-looping-after-the-1st/ecb1d5d1-bced-4bab-871e-f779a83effd9
  8. Grandmaster blue challenges show up in Sudoku Challenges starting October 1 2024

    in Windows 10 Gaming
    Grandmaster blue challenges show up in Sudoku Challenges starting October 1 2024: Starting in October 2024 both today and yesterday I am getting 3 blue grandmaster Sudoku classic boxes for my challenges. I click on them and nothing happens. Windows 10, and it shows me signed into Sudoku.If I instead click on the Calendar tab, it just shows a blank yellow...
  9. Grandmaster blue challenges show up in Sudoku Challenges starting October 1 2024

    in Windows 10 Software and Apps
    Grandmaster blue challenges show up in Sudoku Challenges starting October 1 2024: Starting in October 2024 both today and yesterday I am getting 3 blue grandmaster Sudoku classic boxes for my challenges. I click on them and nothing happens. Windows 10, and it shows me signed into Sudoku.If I instead click on the Calendar tab, it just shows a blank yellow...
  10. Microsoft Sudoku won't open on 2 Windows PC with diifferent accounts

    in Windows 10 Gaming
    Microsoft Sudoku won't open on 2 Windows PC with diifferent accounts: On both PC Win 11 is installed. Sudoku displays only the start page of sudoku and nothing else started now for app. 5 days.I tried all options: reset, repair, uninstall & install, nothing helps.I tried to start sudoku on another PC with win 11 and different account: Same...

Users found this page by searching for:

  1. Having problems with Microsoft Solitaire Collections - Suduko