Tiny Bunny

동아리/전체 활동

[9기 심화] 9주차

bento 2024. 5. 21. 11:29

백준 1157 - python

word = input().upper()
word_list = list(set(word))

time = []

for i in word_list:
    count = word.count(i)
    time.append(count)

if time.count(max(time)) >= 2:
    print('?')
else:
    print(word_list[time.index(max(time))])

 

webhacking.kr old - 48

https://freefworry.tistory.com/189

 

old - 48

간단한 메모와 파일을 업로드 할 수 있고 이걸 upload file에서 업로드된 파일을 확인할 수 있고, Delete를 통해서 지울 수 있다 처음에는 당연히 파일 업로드 취약점이라 생각하고 여러가지 해봤는

freefworry.tistory.com

 

728x90

'동아리 > 전체 활동' 카테고리의 다른 글

[9기 심화] 8주차  (0) 2024.05.14
[9기 심화] 7주차  (0) 2024.05.10
[9기 심화] 6주차  (0) 2024.05.01
[9기 심화] 5주차  (0) 2024.05.01
[9기 심화] 4주차  (0) 2024.03.28