This solution has scored 100 in Quera.
🌟 If you like this solution, please give it a star.
The numbers are 10x which 0<=x<=100.
10x * 10y = 10x y
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))
C# .NET 5
- In the directory, run
dotnet build
dotnet run
Reach out to the maintainer at one of the following places:
The original setup of this repository is by Hamid Molareza.
This solution is licensed under the GPLv3.