Skip to content

Latest commit

 

History

History
49 lines (26 loc) · 1.12 KB

README.md

File metadata and controls

49 lines (26 loc) · 1.12 KB

About this solution

This solution has scored 100 in Quera.

🌟 If you like this solution, please give it a star.

Solution

The numbers are 10x which 0<=x<=100.

Multiplication

10x * 10y = 10x + y

Sumation

10000 + 100 = 10100

For 2 numbers we have only 2 non-zero value Therefore, it is enough to know to which index we must add the non-zero number (from smaller number to bigger number). for example:

Bigger number: 10000 (length: 5)

Smaller number: 100 (length: 3)

we must add 1 to index 2 (5 - (3 - 0))

Built With

C# .NET 5

Usage

  1. In the directory, run dotnet build
  2. dotnet run

Support

Reach out to the maintainer at one of the following places:

Authors & contributors

The original setup of this repository is by Hamid Molareza.

License

This solution is licensed under the GPLv3.