Create a function that accepts string input and int cases as parameters where the string is split into N distinct cases of equal length as shown:
SplitNCases("Strengthened", 6) ➞ { "St", "re", "ng", "th", "en", "ed" }
SplitNCases("Unscrupulous", 2) ➞ { "Unscru", "pulous" }
SplitNCases("Flavorless", 1) ➞ { "Flavorless" }If it's not possible to split the string as described, return { "Error" }.