← 返回 stripe 的题目列表KYC Data Validation
类型:online_judge
Problem: KYC Data Validation
You are given multiple user KYC (Know Your Customer) records. Validate each record according to the rules specified in the prompt and output the validation result for each record.
Note: Your interview note only says “Stripe onsite asked a KYC data validation question, same as the 1point3acres link, and you need to paste test cases into the I/O to test”. Since the link content is not visible in this conversation, the exact fields, input/output format, and validation rules cannot be reconstructed from the provided information.
Information needed to make this a complete coding problem
Input format: what fields each record contains, delimiters, whether there is a test case count T.
Output format: valid/invalid vs. error reasons/field names/error codes.
Validation rules: constraints per field (required, ranges, regex, date format, country code, etc.).
Constraints: number of records and max field lengths.
Once the above is provided, this can be written as a fully specified coding question with test cases and a reference solution.