분류 전체보기67 섹션 3. 탐색 & 시뮬레이션 1. 회문 문자열 검사 # 회문 문자열 # 1. for 문을 도는데, 리스트길이의 절반인덱스만 돌면서 비교하면됨 import sys #sys.stdin = open("in1.txt", "rt") n = int(input()) count = n // 2 for i in range(n): word = list(input()) size = len(word) count = size // 2 flag = True for wordIndex in range(count): if word[wordIndex].upper() != word[size-1-wordIndex].upper() : flag = False break print('#%d'%(i+1), end=' ') if flag == False: print('NO').. 2021. 4. 22. 섹션 2. 코드 구현능력 기르기 1. k번째 약수 #import sys #sys.stdin=open("input.txt","rt") #n=input() #a = int(n.split(" ")[0]) #b = int(n.split(" ")[1]) #count = 0 #result = -1 #for i in range(1,a+1): # if a%i==0: # count+=1 # if count==b: # result = i # break #print(result) # 풀이 import sys #sys.stdin = open("input.txt", "rt") n, k = map(int, input().split()) cnt = 0 for i in range(1, n+1): if n % i == 0: cnt+=1 if cnt == k: pri.. 2021. 4. 15. HackerRank - Challenges (Using 'subquery', 'with') 문제 Julia asked her students to create some coding challenges. Write a query to print the hacker_id, name, and the total number of challenges created by each student. Sort your results by the total number of challenges in descending order. If more than one student created the same number of challenges, then sort the result by hacker_id. If more than one student created the same number of challeng.. 2021. 3. 27. 컴공 인강 및 커리큘럼 추천 출처 imasoftwareengineer.tistory.com/56 컴퓨터 공학에 접근하는 방법 학부 시절에 학교에서 연 세미나에 참석 한 적이 있다. 이 세미나에선 실리콘밸리에서 일하는 한국인 엔지니어들이 와서 자신의 경험과 취업 경로에 대해 이야기 해 주었다. 강연자 중 한 분이 imasoftwareengineer.tistory.com coding-groot.tistory.com/93 2021. 2. 7. 다른 개발블로거의 공부루틴 ppss.kr/archives/204117 2021. 1. 10. Leetcode 267 UPDATE SALARY SET SEX = ( CASE WHEN SEX = 'm' THEN 'f' ELSE 'm' END ) 2020. 10. 24. 이전 1 ··· 6 7 8 9 10 11 12 다음