* @brief * Iterative Dynamic Programming function * @details * Returns whether `s` can be converted to `t` with following rules: * a. Capitalize zero or more of s's lowercase letters from string `s` * b. remove all other lowercase letters from string `s` * Note: The transition states for iterative is similar to recursive as well * @param str given string, which might not be abbreivated * @