473,763 Members | 1,377 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Does anyone know of a 2x2 sudoku game WITH images?

tpgames
785 Contributor
I've struck zero in finding a Link to a sudoku game that actually uses images for numbers, even images OF numbers. Yes, I'd prefer the game in JavaScript. Every site I've been too, (hundreds) uses CSS and HTML and NOT images. I've only found 1 site that uses images, and their source code is NOT available for viewing, at all. I can't even find that site anymore. I do mean that the game itself uses images in solving the problem. I do not mean, and game with a prize of an image coming up after you've solved it. One Australian sites uses an image picture as a prize for solving it. However, I've not been able to convert their code to images.
Thanks in Advance! ps. I can't wait until JavaScript finally starts making sense to me. :>)

(Moderators, posted this here, because no one in the JS forum knows of a game WITH images. And, because Sudoku is so popular, I decided to grasp at straws and throw this question out to the community, as I'm not asking for someone to encode it for me.)
Feb 16 '07 #1
11 4837
Ganon11
3,652 Recognized Expert Specialist
A 2x2 sudoku? That would be too easy.
Feb 16 '07 #2
tpgames
785 Contributor
The game would be for my nephew, who is 4. I'm still too new to Javascript to figure out the coding myself, but I'm working on trying to convert a 3x3 with images to a 2x2.
Mar 5 '07 #3
Rabbit
12,516 Recognized Expert Moderator MVP
By 2x2 are you talking about 36 cells? or 4 cells?

I have an algorithm to make a simple sudoku in VBA, all you'd have to do is convert it to javascript and map the numbers to images.
Mar 5 '07 #4
DeMan
1,806 Top Contributor
I think he means 4 squares of four cells each (Unless his nephew is in Mensa already)....I have occasionaly seen these ploating around, but in kids sections (best part of the paper) of newspapers more than online....
Mar 5 '07 #5
Rabbit
12,516 Recognized Expert Moderator MVP
You said that hundreds of sites that you've been to uses html and css but not images. But that doesn't make sense since you can't actually program anything with just images.

Also, you can take any algorithm that they use to create a sudoku and map it appropriately to images. There's no need to find code that specifically uses images. And I would guess that any code that does use images goes through the same process of using numbers but linking them to images anyways.
Mar 5 '07 #6
deadpigeonscantfly
1 New Member
Take a look at:http://www.w-sudoku.com/

There is an image-base Java sudoku there to download for free but it has a annoying error in it that I haven't worked out how to eradicate yet.

Once I've fixed it, I will post back and let you knw.
Apr 26 '07 #7
MMcCarthy
14,534 Recognized Expert Moderator MVP
Take a look at:http://www.w-sudoku.com/

There is an image-base Java sudoku there to download for free but it has a annoying error in it that I haven't worked out how to eradicate yet.

Once I've fixed it, I will post back and let you knw.
Love the username. Now you just have to figure out an avatar to go along with it <grin>
Apr 26 '07 #8
wsdk
1 New Member
Hello,

I am the w-sudoky programmer. Please inform for the error and I will fix it.

Thanks
Oct 6 '07 #9
sitko
140 New Member
There used to be a great DOS game called sherlock.exe, which is a pictorial version of Suduko...sorta. ..it was more like a image based logic puzzle where the red house is next to the green house and mr. jones lives next door to ms. smith, etc.

I remember I even changed the graphics on it to match up to their pets, among other things...

I think this is a link to it...
http://www.free-games-net.com/games/sherlock.shtml

Sitko.
Oct 8 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

5
9995
by: Stewart Gordon | last post by:
I have a few Sudoku puzzles on my site. http://www.stewartsplace.org.uk/mindbenders/ But adding extra columns and rows to separate the 3x3 blocks seems a rather kludgy approach, and the result isn't aesthetically the best either. There ought to be a way of making the grids look nicer. I've played about a bit with rowgroups and colgroups before discovering that rowgroup is called tbody.
11
4140
by: ago | last post by:
Inspired by some recent readings on LinuxJournal and an ASPN recipe, I decided to revamp my old python hack... The new code is a combination of (2) reduction methods and brute force and it is quite faster than the ASPN program. If anyone is interested I attached the code in http://agolb.blogspot.com/2006/01/sudoku-solver-in-python.html
2
1440
tpgames
by: tpgames | last post by:
I have not been able to find source code for a kids (2x2) sudoku game, and was wondering if anyone had the time to volunteer to make a JavaScript version for me that uses images. I only ask, because comparing the 2x3 and the 3x3 source codes I do have, does not help me figure out how to make a 2x2 sudoku game. I also ask because my 4 yr old nephew is hooked on sudoku and really wants one with images. He's been bugging me for 4 months, and I've...
2
1869
tpgames
by: tpgames | last post by:
In a 3x3 sudoku JavaScript with images, what is 48? and 57? I'm trying to convert a 3x3 sudoku to a 2x2. I don't understand why 48 can't be say, 46 or 45; why 57 can't be 54, etc. Its the numbers I don't understand. function KeyDown(whichkey) { if (IsOver) return; if (I_Sel==-1) return; if ((whichkey>=48)&&(whichkey<=57)) { Fld=48-whichkey; window.document.images.src = NPic.src; I_Sel=-1;
0
6740
by: JosAH | last post by:
Greetings, a couple of years ago a large part of the world went totally mad. Not because of global climate changes, not because of terrible wars that were started in the Middle East, nor because of global famine, but because of a puzzle: Sudoku. This is what Sudoku is all about: +-------+-------+-------+
2
4036
by: tesa | last post by:
I am not able to figure out how to make this work. I am trying to create a hangman game. I am in a basic javascripting class. I am to only use very basic code as you can see. I am able to use any online resources to help me. I have added alot of comments for what should be happening however is not happening. I also have a teacher that teaches us one way but then asks us to do things he has not taught. I am trying my very best. Any...
1
3121
by: flg22 | last post by:
Hi I am working on this Rock, paper, scissors java game and the program works, but I can not figure out how to get the images to load onto the program. So my question is how do I get the images to load up with the program? I am using JCreator for this project. I have created the Basic Java Application project, and then added in the 3 .java files that I need to run the program, but I just can not figure out how or where I need to upload the...
3
8604
by: deanchhsw | last post by:
Hello, I'm trying to build a program that solves sudokus and prints out the result on the screen. Here's the code for the class SudokuBoard. this will later be called in a class Sudoku. I'm a newbie, so making this took me hours and hours of time... // class SudokuBoard, will be called by class Sudoku import java.util.Scanner; import java.io.*; public class SudokuBoard { private int board = new int;
3
5973
by: DannyB13 | last post by:
Hi, and thanks for possible help in advance. Here's my dilemma. I've been making a sudoku generator, and I'm now stuck on one part. I must be able to take a 'solution' and verify that it is correct, by checking a few things. 1. There are enough numbers, no 'periods' which signify '0' or 'no input'. 2. That there are no duplicate numbers in any row, column, or 3x3 box. I have been thinking of ways to do this and I've come up with 2 things....
0
9563
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10145
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9938
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8822
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7366
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3523
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2793
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.