-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path482. License Key Formatting.c
84 lines (55 loc) · 2.26 KB
/
482. License Key Formatting.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
482. License Key Formatting
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:
Input: S = "2-4A0r7-4k", K = 4
Output: "24A0-R74K"
Explanation: The string S has been split into two parts, each part has 4 characters.
Example 2:
Input: S = "2-4A0r7-4k", K = 3
Output: "24-A0R-74K"
Explanation: The string S has been split into three parts, each part has 3 characters except the first part as it could be shorter as said above.
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.
*/
char* licenseKeyFormatting(char* S, int K) {
char *p;
int l, n, m;
char *head, c;
int i;
p = S;
l = 0;
while (*p) {
if (*p != '-') l ++; // get length all valid characters
p ++;
}
if (l == 0) return "";
n = l / K; // total number of groups having full of K characters
m = K - (l % K); // start number of first group
p = malloc(l + n + 1);
//assert(p);
head = p;
while (c = *(S ++)) {
if (c == '-') continue;
*p = (c >= 'a' && c <= 'z') ? c - 'a' + 'A': c;
p ++;
m = (m + 1) % K;
if (m == 0) {
*p = '-';
p ++;
}
}
if (*(p - 1) == '-') p --;
*p = 0;
return head;
}
/*
Difficulty:Medium
Total Accepted:17.6K
Total Submissions:42.5K
Companies Google
*/