This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
count =0; | |
stringInput = input(("Enter a string: ")) | |
for p in itertools.permutations(stringInput): | |
count = count +1 | |
print("{},{}".format(count,p)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed class MoneyBoxIntent : MviIntent { | |
data class LoginIntent(val loginRequestBody: LoginRequestBody) : MoneyBoxIntent() | |
object GetAllInvestorProductsIntent : MoneyBoxIntent() | |
object MakeOneOffPaymentIntent : MoneyBoxIntent() | |
} | |
**************************************************************************************************************************************** | |
package com.android.moneybox.presentation | |
import androidx.lifecycle.ViewModel | |
import com.android.moneybox.domain.mvi.moneyboxactions.MoneyBoxAction |
OlderNewer