diff options
Diffstat (limited to 'progs/a580.py')
-rw-r--r-- | progs/a580.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/a580.py b/progs/a580.py new file mode 100644 index 0000000..3bc645a --- /dev/null +++ b/progs/a580.py @@ -0,0 +1,8 @@ +def first_Repeated_Char(str):
+ h = {}
+ for ch in str:
+ if ch in h:
+ return ch;
+ else:
+ h[ch] = 0
+ return '\0'
\ No newline at end of file |