CheckSum

CheckSum

Simple
English ES

Errors during transcription are rather common. Unintentional keystrokes can cause characters to be rearranged, dropped or inserted in manually typed text.

Luckily for the robots, you have ways to solve problems like this. Your CheckSum helps to reduce the likelihood of errors by introducing a final character that is calculated from the previous characters. With the proper reasoning, the final character can always be calculated. This way, when inputs are entered, you can instantly verify that the final character matches the character predicted by CheckSum. If the two do not match, the input is rejected. The end result is that you would see fewer data entry errors.

How CheckSum Works:

CheckSum reasoning will need map points. This is a definition lookup for how to process the input necessary to generate the final character, which will be enable us instantly verify that our input is correct. In other words, for each sequence character of the input, we are confident there can only be one possible input, all thanks to this final character.



The steps you must take to obtain the final character are as follows:
  1. From the rightmost input, traverse from right to left, and apply 'map point character lookup' for even-indexed characters.
  2. Add map point results for even-indexed characters with the unchanged digits from the original number.
  3. Find the remainder of this sum with 10. For an example...
To generate the 'map point character lookup' table:

Could you give me an example please?

Okay, take a look this example for a (pretend) account number: "7992739871". We will add final character to it, so it looks something like: "7992739871x," with x being the final character-to-be-found.

Here is what a 'map point character lookup' table looks like for 0 through 9:

Digits : 0 1 2 3 4 5 6 7 8 9
Doubled : 0 2 4 6 8 10 12 14 16 18
Reduced : 0 2 4 6 8 1+0 1+2 1+4 1+6 1+8
Map Point : 0 2 4 6 8 1 3 5 7 9


And here is how we will obtain final character:

Index : 0 1 2 3 4 5 6 7 8 9
Reversed : 1 7 8 9 3 7 2 9 9 7
From table : 2 7 6 4 9 Total: 67
Unchanged : 7 9 7 9 7
Final Character : 10 - ( 67 % 10 ) = 10 - 7 = 3

So, we can release the account number as follows: 799 273 9871 3

Alphanumeric Input

To make this more interesting, we can use alphanumeric input, which is a possible combination of 10 digits and 26 capital letters. It means that we will have to upgrade our map point to support letters. How we achieve that? We use each character's ASCII value to help us determine the character sequence. For example: 'A' has an ASCII value 65. To determine its sequence in our map, we need to substract 48.

For this example, 'A' is 7 since 65 - 48 = 17, 17 * 2 = 34 and 3 + 4 = 7. (Remember to only apply 'map point character lookup' to even-indexed characters. If 'A' is an odd-indexed character, its value is 17)

Alphanumeric Example

Alright, we have another example here: "139MT". Let's see how we can obtain the final character...

Reversed : T M 9 3 1
Sum of digits : 9 29 9 3 2 Total: 52
Final Character : 10 - ( 52 % 10 ) = 10 - 2 = 8

Here is detail for how we do it:

  • T:  ASCII of 84, 84 - 48 = 36, 36 * 2 = 72, and 7 + 2 = 9
  • M:  ASCII of 77, and 77 - 48 = 29
  • 9:  from map point is, 9, or ASCII of 57, 57 - 48 = 9, 9 * 2 = 18, and 1 + 8 = 9
  • 3:  just 3, or ASCII of 51, and 51 - 48 = 3
  • 1:  from map point is, 2, or ASCII of 49, 49 - 48 = 1, and 1 * 2 = 2
  • Sum of digits is 52, since 9 + 29 + 9 + 3 + 1 = 52
  • Final character is 8, since 10 - ( 52 % 10 ) = 10 - 2 = 8

Now it's time to test your CheckSum module!

Input: Unsanitized numeric or alphanumeric due to formatting purpose

Output: List of its final character and sum of digits

Example:

checkio("799 273 9871") == ["3", 67]
checkio("139-MT") == ["8", 52])
checkio("123") == ["0", 10])
checkio("999_999") == ["6", 54])
checkio("+61 820 9231 55") == ["3", 37])
checkio("VQ/WEWF/NY/8U") == ["9", 201])
You should be an authorized user in order to see the full description and start solving this mission.
Settings
Code:
Other:
Invalid hot key. Each hot key should be unique and valid
Hot keys:
CheckiO Extensions

CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.

In order to install CheckiO client you'll need installed Python (version at least 3.8)

Install CheckiO Client first:

pip3 install checkio_client

Configure your tool

checkio --domain=py config --key=

Sync solutions into your local folder

checkio sync

(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)

checkio serv -d

Alternatevly, you can install Chrome extension or FF addon

checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium

Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.

Pair Programming (Beta-version)

Welcome to Pair Programming! Engage in real-time collaboration on coding projects by starting a session and sharing the provided unique URL with friends or colleagues. This feature is perfect for joint project development, debugging, or learning new skills together. Simply click 'Start Session' to begin your collaborative coding journey!

Waiting for Pair Programming to start...

You are trying to join a pair programming session that has not started yet.

Please wait for the session creator to join.

Waiting for Pair Programming to reconnect...

It looks like the creator of the pair programming session closed the editor window.

It might happen accidentally, so that you can wait for reconnection.

×
 
 
<< <
> >>
exec show

Whats Next?

Free accounts will see Best CheckiO solutions with some delay.
Best Solutions will be opened in a moment
Become Awesome and Don't wait
The next stage is ""
Will be activated in
View More Solutions Random Review Solutions Go to the next mission