We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have not found a way to do exponentiation in your language
Exponentiation is a mathematical operation.
In Mathematics
ab
Examples
35 = 3 × 3 × 3 × 3 × 3 53 = 5 × 5 × 5
My solutions for Bhailang ↓
As an operator
a ** b
3 ** 5 = 3 * 3 * 3 * 3 * 3 5 ** 3 = 5 * 5 * 5
3 ** 5
3 * 3 * 3 * 3 * 3
5 ** 3
5 * 5 * 5
As text
a ka ghat b (this is in Hindi language)
a ka ghat b
3 ka ghat 5 = 3 * 3 * 3 * 3 * 3 5 ka ghat 3 = 5 * 5 * 5
3 ka ghat 5
5 ka ghat 3
Thank you very much
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I have not found a way to do exponentiation in your language
Describe the solution you'd like.
Exponentiation is a mathematical operation.
In Mathematics
ab
Examples
35 = 3 × 3 × 3 × 3 × 3
53 = 5 × 5 × 5
My solutions for Bhailang ↓
As an operator
a ** b
Examples
3 ** 5
=3 * 3 * 3 * 3 * 3
5 ** 3
=5 * 5 * 5
As text
a ka ghat b
(this is in Hindi language)Examples
3 ka ghat 5
=3 * 3 * 3 * 3 * 3
5 ka ghat 3
=5 * 5 * 5
Thank you very much
Describe alternatives you've considered
No response
Additional context.
No response
The text was updated successfully, but these errors were encountered: