Now you are given a string S, which represents a software license key which we would like to format. The string S is composed of alphanumerical characters and dashes. The dashes split the alphanumerical characters within the string into groups. (i.e. if there are M dashes, the string is split into M+1 groups). The dashes in the given string are possibly misplaced.
We want each group of characters to be of length K (except for possibly the first group, which could be shorter, but still must contain at least one character). To satisfy this requirement, we will reinsert dashes. Additionally, all the lower case letters in the string must be converted to upper case.
So, you are given a non-empty string S, representing a license key to format, and an integer K. And you need to return the license key formatted according to the description above.
Example 1:
Example 2:
Note:
The length of string S will not exceed 12,000, and K is a positive integer.
String S consists only of alphanumerical characters (a-z and/or A-Z and/or 0-9) and dashes(-).
String S is non-empty.
這道題讓我們對注冊碼進行格式化,正确的注冊碼的格式是每四個字元後面跟一個短杠,每一部分的長度為K,第一部分長度可以小于K,另外,字母必須是大寫的。那麼由于第一部分可以不為K,那麼我們可以反過來想,我們從S的尾部往前周遊,把字元加入結果res,每K個後面加一個短杠,那麼最後周遊完再把res翻轉一下即可,注意翻轉之前要把結尾的短杠去掉(如果有的話),參見代碼如下:
解法一:
上面代碼可以進一步精簡到下面這種,我們用到了自帶函數toupper,把字母轉為大寫格式,參見代碼如下:
解法二: