Windows 10: Sudoku has repeating ads

Discus and support Sudoku has repeating ads in Windows 10 BSOD Crashes and Debugging to solve the problem; Sometimes while I'm playing Sudoku the ads keep repeating and there isn't a button to turn them off. I have to exit the ap and on re-entering the game... Discussion in 'Windows 10 BSOD Crashes and Debugging' started by LimeObelisk, Nov 9, 2019.

  1. Sudoku has repeating ads


    Sometimes while I'm playing Sudoku the ads keep repeating and there isn't a button to turn them off. I have to exit the ap and on re-entering the game I'm forced to watch yet another ad before I can play my game! It's annoying and unfair. I understand the need for ads but I doubt that this is a glitch. I suspect it's to make players more likely to click on the ad.

    :)
     
    LimeObelisk, Nov 9, 2019
    #1

  2. adult game pop up ads appearing in microsoft games, especially sudoku and jigsaw

    Hi,

    In-game inquiries like turning off game advertisements are handled
    by our Xbox Support Team. We've made a research on how to stop Windows 10 displaying targeted ads.
    You may refer to the steps below:

    • Open Settings.
    • Click on Privacy.
    • Click on General.
    • Under Chang privacy options, toggle switch to turn off Let apps use my advertising ID for experiences across apps.

    If the same instance occurs, we recommend posting your concern to the Microsoft
    Jigsaw and Sudoku in-game community. Here are the links:

    If you need further assistance, feel fee to post.
     
    Wilfred Mac, Nov 9, 2019
    #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 Sudoku has repeating ads :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Nov 9, 2019
    #3
  4. donnylad Win User

    Sudoku has repeating ads

    Killer Sudoku needed

    Sorry Bree that is plain Sudoku and I would like Killer Sudoku, also I want to download it to install, thanks for your help.
    Len
     
    donnylad, Nov 9, 2019
    #4
Thema:

Sudoku has repeating ads

Loading...
  1. Sudoku has repeating ads - Similar Threads - Sudoku has repeating

  2. MS Games Sudoku Paid for now getting ads

    in Microsoft Windows 10 Store
    MS Games Sudoku Paid for now getting ads: I purchased the Sudoku app from the MS store. Now I'm getting ads every time I want to play the game I get ads. https://answers.microsoft.com/en-us/windows/forum/all/ms-games-sudoku-paid-for-now-getting-ads/0cf4ac90-6c40-4634-93ff-5a6066ea7a3b
  3. 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
  4. 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
  5. 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
  6. Sudoku Ad freezing games AGAIN!!!

    in Windows 10 Software and Apps
    Sudoku Ad freezing games AGAIN!!!: Every so often, Sudoku freezes on me with nothing responding (but its clock continuing to count) either with a blank pane where an ad would normally be or (occasionally) with a specific ad in that location. It is fairly obvious that it is failing to deal properly with an ad...
  7. 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...
  8. Ads during Sudoku game?

    in Windows 10 Installation and Upgrade
    Ads during Sudoku game?: How do I stop ads during Sudoku game? I had the same problem in Mahjong and paid for premium to stop the ads. Can I do the same in Sudoku? https://answers.microsoft.com/en-us/windows/forum/all/ads-during-sudoku-game/da143581-500b-4053-9ded-1141073f959f
  9. Adult ads when playiing Sudoku

    in Windows 10 Gaming
    Adult ads when playiing Sudoku: How to stop +18 ads when playing Microsoft Sudoku I little bit on the nose s there are others that use this computer https://answers.microsoft.com/en-us/windows/forum/all/adult-ads-when-playiing-sudoku/110e4e6c-6b4a-4f30-b5f0-ec1090920520
  10. 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...