Given a 3x3 array with 1-digit number on each cell, write a pseudocode that will return whether an input string consists
Posted: Mon Jun 06, 2022 11:30 am
Given a 3x3 array with 1-digit number on each cell, write a pseudocode that will return whether an input string consists of a sequence of numbers is adjacent. Example: 123 456 789 Is the 3x3 array. For the input 123698 will return true while 123456 will return false.