Files

37 lines
831 B
Plaintext

## Instructions:
Identify the identified_name (native Congolese part) and identified_surname (non-native, French or English part) from the provided full name.
Return null if a part cannot be identified. Do not alter the original name, do not change case or add any additional information.
## Examples:
```
"tshabu ngandu"
{
"identified_name": "tshabu ngandu",
"identified_surname": null
}
"bapite marie"
{
"identified_name": "bapite",
"identified_surname": "marie"
}
"tshisekedi mulumba jean claude"
{
"identified_name": "tshisekedi mulumba",
"identified_surname": "jean claude"
}
"ilunga wa makuta jean-marie"
{
"identified_name": "ilunga wa makuta",
"identified_surname": "jean-marie"
}
"ntumba wasokadio marie france"
{
"identified_name": "ntumba wasokadio",
"identified_surname": "marie france"
}
```