PayPay India test tooling receives an identifier and the ordered words it should contain. Write a function that returns True only when the identifier follows the required camel-case pattern exactly.
The first word must appear entirely in lowercase. Every later word must begin with an uppercase letter followed by its remaining lowercase letters. The identifier must contain all words in the given order, with no missing, extra, or rearranged characters.
Implement validate_camel_case(s, words).
s is a string containing the candidate identifier.words is a non-empty array of non-empty lowercase English words.True if s is exactly the camel-case concatenation of words, otherwise False.def validate_camel_case(s, words):