Question: Write a VB.NET method that takes a string of integers, and detects if there is a run of 3 consecutive numbers. Ex. 12333456789 Output: Yes
Write a VB.NET method that takes a string of integers, and detects if there is a run of 3 consecutive numbers.
Ex. 12333456789
Output: Yes
Ex. 123456789
Output: No
Extra Credit:
Write a similar program, that if there is an isolated run of 3 consecutive numbers, check if there is a second run of 3 consecutive numbers.
Ex. 1233345677789
Output: Yes
Ex. 122223455556789
Output: No
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
