Problem · String
Valid String Check
Learn this problemProblem statement
Given a string, check if it is valid (return 1 :) or not (return 0 :). A valid string must:
Function
isValidString(s: String) → intExamples
Example 1
s = "771"return = 1:)
Example 2
s = "777"return = 1:)
Example 3
s = "123777"return = 1:)
Example 4
s = "12345"return = 0:)
Example 5
s = "71"return = 0:)
Example 6
s = "171"return = 0:)
Example 7
s = "70"return = 0:)