diff --git a/pu2rile/README.md b/pu2rile/README.md index 2146df3..6bede4a 100644 --- a/pu2rile/README.md +++ b/pu2rile/README.md @@ -4,7 +4,4 @@ |:----:|:---------:|:----:|:-----:|:----:| | 1차시 | 2024.03.24 | DP | [평범한 배낭](https://www.acmicpc.net/problem/12865) | [#3](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/3#issue-2205834078)| | 2차시 | 2024.03.29 | 구현 | [OX퀴즈](https://www.acmicpc.net/problem/8958) | [#6](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/6#issue-2214931034)| -| 3차시 | 2024.04.02 | 문자열 | [크로아티아 알파벳](https://www.acmicpc.net/problem/8958) | [#10](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/10#issue-2220631332) -| 4차시 | 2024.04.08 | 스택 | [제로](https://www.acmicpc.net/problem/10773) | [#15](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/15#issue-2229909173) -| 5차시 | 2024.04.10 | 그리디 알고리즘 | [국회의원 선거](https://www.acmicpc.net/problem/1417) | [#18](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/18#issue-2235862658) -| 6차시 | 2024.05.10 | 그리디 알고리즘 | [ATM](https://www.acmicpc.net/problem/11399) | [#25](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/25#issue-2289086909) +| 3차시 | 2024.04.02 | 문자열 | [크로아티아 알파벳](https://www.acmicpc.net/problem/8958) | [#10](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/10#issue-2220631332) \ No newline at end of file diff --git "a/pu2rile/\353\254\270\354\236\220\354\227\264/\355\201\254\353\241\234\354\225\204\355\213\260\354\225\204 \354\225\214\355\214\214\353\262\263.py" "b/pu2rile/\353\254\270\354\236\220\354\227\264/\355\201\254\353\241\234\354\225\204\355\213\260\354\225\204 \354\225\214\355\214\214\353\262\263.py" new file mode 100644 index 0000000..d332e70 --- /dev/null +++ "b/pu2rile/\353\254\270\354\236\220\354\227\264/\355\201\254\353\241\234\354\225\204\355\213\260\354\225\204 \354\225\214\355\214\214\353\262\263.py" @@ -0,0 +1,5 @@ +change = ['c=','c-','dz=','d-','lj','nj','s=','z='] +str = input() +for n in change: #change에서 하나씩 루프 돌며 + str = str.replace(n, 'a') #str과 같은 문자를 발견하면 해당 문자를 a으로 치환 +print(len(str)) #str의 길이 \ No newline at end of file