about summary refs log tree commit diff
path: root/ntu/xauduynhat.c
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
commit9e28e4c7b67c54229df11d355047ac8a88ea1817 (patch)
tree0d9d40db69613c2c49564a3f1987a005d61f4db3 /ntu/xauduynhat.c
parent67393f42f41ab92219deb549f711121c4dab845b (diff)
downloadcp-9e28e4c7b67c54229df11d355047ac8a88ea1817.tar.gz
Normalize pathname
Diffstat (limited to 'ntu/xauduynhat.c')
-rw-r--r--ntu/xauduynhat.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/ntu/xauduynhat.c b/ntu/xauduynhat.c
new file mode 100644
index 0000000..4e327a2
--- /dev/null
+++ b/ntu/xauduynhat.c
@@ -0,0 +1,42 @@
+#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+
+unsigned short unqlen(char *s)
+{
+	char up[26] = {}, low[26] = {}, c;
+	unsigned short i, len = strlen(s);
+
+	for (i = 0; i < len; i++) {
+		c = s[i];
+		if (islower(c)) {
+			low[c - 97]++;
+			if (low[c - 97] > 1)
+				return i;
+		} else {
+			up[c - 65]++;
+			if (up[c - 65] > 1)
+				return i;
+		}
+	}
+
+	return i;
+}
+
+int main()
+{
+	char s[50000];
+	scanf("%s", s);
+
+	unsigned short i, max = 1, val;
+
+	for (i = 0; i < strlen(s) - max; i++) {
+		val = unqlen(s + i);
+		if (val > max)
+			max = val;
+	}
+
+	printf("%hd\n", max);
+
+	return 0;
+}