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:)
More Uber problems
- Last Truck to Leave the LaneOA · Seen Jul 2026
- Chain of CommandOA · Seen Jul 2026
- Jump Game with Prime-3 StepsOA · Seen Jun 2026
- Total Palindrome Substring CostOA · Seen Jun 2026
- Earliest Time All Users Are ConnectedPHONE SCREEN · Seen May 2026
- Tournament Rounds by RankPHONE SCREEN · Seen May 2026
- Farthest Seat AssignmentONSITE INTERVIEW · Seen May 2026
- Convex Function MinimizationPHONE SCREEN · Seen May 2026