SecUSo / privacy-friendly-sudoku

Privacy Friendly App to play Sudoku on Android.
https://secuso.org/pfa-sudoku
GNU General Public License v3.0
144 stars 55 forks source link

Overlapping small chinese numbers on 12x12 #63

Open 4ntn opened 3 years ago

4ntn commented 3 years ago

When using chinese numbers, the number 10 is 十; 11 is 十一; and 12 is 十二. If 10 and 11 are marked on the same square (as small numbers), the 十 on both of them overlaps perfectly, making it impossible to discern whether number 10 is there or not.

Kamuno commented 3 years ago

Do you have a proposal for a neat solution?

We could just display the notes smaller or maybe try to alter the note text and display it differently... (Maybe on top of eachother?) Still trying to think of a neat way.

annihat commented 3 years ago

@Kamuno

Do you have a proposal for a neat solution?

What solution do you use for double-digit Western Arabic numbers? Would the same solution work here?

The numbers in question (note that Hanzi only has 2 double-digit numbers to deal with whereas Western Arabic has 3) -- Screenshot_2021-05-03-09-42-20-22_81b5f59f81a9801c9f112972edbe649b

Kamuno commented 3 years ago

Instead of using numbers we continue using regular letters .. as is done when counting regular hex numbers... so from 0 - F instead of 0 - 15

annihat commented 3 years ago

@4ntn, is there a common solution to this problem in paper Sudoku books? Or elsewhere?

annihat commented 3 years ago

@Kamuno, @4ntn, perhaps letters is the solution? Don't use numbers at all?

4ntn commented 3 years ago

I think I came up with a solution: Instead of using numbers 十一 (11) and 十二 (12), it is possible to use 百 (100) and 千 (1000), which are different numbers consisting of one single character. It is kind of weird, because numbers would jump from ...8, 9, 10 to 100 and 1000; but regarding Sudoku this doesn't really matter, and I think it would look good.

@4ntn, is there a common solution to this problem in paper Sudoku books? Or elsewhere?

I haven't really done Sudokus on paper, but I guess you can just fit the 十一 and 十二. After all, it's easier to manage the space writing by hand. I haven't heard of any other solution.