Posts by Dev xablix • 19 points
3 posts
-
1
votes1
answer53
viewsQ: Logic - Given 2 strings, how to know how many moves I make when turning the first string into the second
Hi, are you okay? I have 2 strings , and I need you to calculate the total of moves to become the first string in the second string string palavra1 = "gato" string palavra2 = "pato" replacing the…
-
0
votes0
answers34
viewsQ: Restsharp canceling the operation
Good afternoon, I have an application that via Restsharp I make a call on the Revenue Service to retrieve the information I need. However, as I use a third-party service, we do not know when this…
-
0
votes2
answers214
viewsQ: Knowing when my list is coming with values in sequence
I have a List<int>: [2,3,5,4,6] Although not in order, it is a sequence of numbers (2,3,4,5,6) How do I validate this? Note: There will always be 5 positions and the numbers will be from 1 to…