Windows 10: Disappointed that you changed Sudoku

Discus and support Disappointed that you changed Sudoku in Microsoft Windows 10 Store to solve the problem; Dear Community, I am really disappointed that Microsoft chose to change the Sudoku games. The new games are way to bright and itstoo difficult to... Discussion in 'Microsoft Windows 10 Store' started by Dr.Mortimer, Jul 23, 2020.

  1. Disappointed that you changed Sudoku


    Dear Community,


    I am really disappointed that Microsoft chose to change the Sudoku games. The new games are way to bright and itstoo difficult to differentiate colors given the brightness of the blocks. I also do not like the ice breaker game.

    :)
     
    Dr.Mortimer, Jul 23, 2020
    #1

  2. Disappointed that you changed Sudoku

    Dear Community,

    I am really disappointed that Microsoft chose to change the Sudoku games. The new games are way to bright and its
    too difficult to differentiate colors given the brightness of the blocks. I also do not like the ice breaker game.
     
    Dr.Mortimer, Jul 31, 2020
    #2
  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 Disappointed that you changed Sudoku :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Jul 31, 2020
    #3
  4. Disappointed that you changed Sudoku

    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, Jul 31, 2020
    #4
Thema:

Disappointed that you changed Sudoku

Loading...
  1. Disappointed that you changed Sudoku - Similar Threads - Disappointed changed Sudoku

  2. SUDOKU

    in Windows 10 Gaming
    SUDOKU: I can't open sudoku. Is anyone else having problems? https://answers.microsoft.com/en-us/windows/forum/all/sudoku/36fbc8f7-8774-4b66-b248-bb323faf56a4
  3. SUDOKU

    in Windows 10 Gaming
    SUDOKU: I'm having problems loading Microsoft Sudoku. It either won't load, or it crashes or the spinning circle never stops spinning. Does anyone have a solution? https://answers.microsoft.com/en-us/windows/forum/all/sudoku/d803d1f8-189b-4e42-96d0-39ec805014cd
  4. Sudoku

    in Windows 10 Customization
    Sudoku: Hello there I am playing my daily challenges by Sudoku. However today I can't open the Sudoku ??????? Please HELP Why is this, this problem is coming up more times ????? https://answers.microsoft.com/en-us/windows/forum/all/sudoku/10916744-84f2-4535-bb97-ea9b444f9a92
  5. sudoku

    in Windows 10 Software and Apps
    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...
  6. Sudoku

    in Windows 10 Gaming
    Sudoku: For two days I've been unable to play Sudoku as the Slots advert won't close. Hope you can help, thank you. https://answers.microsoft.com/en-us/windows/forum/all/sudoku/2483d23d-f1cb-4962-ab43-1ab0af885525
  7. SUDOKU

    in Windows 10 Gaming
    SUDOKU: It is now october and this issue is still raising its head. I can't log in to sudoku!!!! I had this problem a couple of months ago and followed instructions that sorted it, by checking for updates. It has happened again this month and nothing i do solves the problem which...
  8. sudoku

    in Windows 10 Gaming
    sudoku: It is now october and this issue is still raising its head. I can't log in to sudoku!!!! I had this problem a couple of months ago and followed instructions that sorted it, by checking for updates. It has happened again this month and nothing i do solves the problem which...
  9. Very disappointed ...

    in Browsers and Email
    Very disappointed ...: Disappointed that Microsoft ***still*** hasn't fixed the window position problem for Edge in their latest update for Windows 10 (10586.104). The problem of Edge not remembering its last window position has been present since day one of Windows 10's release, and it still...
  10. Disappointing update

    in Windows 10 Updates and Activation
    Disappointing update: Announced as a big update, I'm really disappointed. It brings no breathtaking new features at all, all light ones, such as hovering the mouse over a tab in Edge, which brings up a thumbnail of the site (what's the use of that, I find it even annoying). Not tested yet if the...