코딩테스트(3)
-
[C++ 스터디] LeetCode 코딩 테스트 문제 풀어보기! - Roman to Integer
새로 배우는 언어에 익숙해지는 방법이 몇 가지 있는데, 첫번째는 바로 실무를 뛰면서 하드 트레이닝을 받는 것이고 두번째는 매일매일 문제를 한 개씩 풀어보는 것이다. 회사 동료분이 LeetCode가 좋다고 하셔서 예전에 파이썬으로 조금 문제를 풀어봤었는데, 이제 내 주력언어는 C++이 되어야하기 때문에 C++로 짜보기 시작했다. 로그인하고 이런저런 정보를 입력하니 몇 개의 문제를 추천해줘서 진짜 하드코딩해서 문제를 풀었다. 문제 문제는 로마식 숫자 표현을 우리가 아는 정수로 바꾸는 것이었다. https://leetcode.com/problems/roman-to-integer/ Roman to Integer - LeetCode Level up your coding skills and quickly land ..
2022.08.15 -
[Python 문제풀이] 5일차
Day_5 Q10. commonCharacterCount Given two strings, find the number of common characters between them. def commonCharacterCount(s1, s2): s3 = list(s1) s4 = list(s2) save = list() if len(s3) >= len(s4): for i in range(len(s4)): Character = s4[i] try: Idx = s3.index(Character) except: pass else: save.append(s3.pop(Idx)) else: for i in range(len(s3)): Character = s3[i] try: Idx = s4.index(Character)..
2020.07.13 -
[Python 문제풀이] 3일차
Day_3 Q8. matrixElementSum After becoming famous, the CodeBots decided to move into a new building together. Each of the rooms has a different cost, and some of them are free, but there's a rumour that all the free rooms are haunted! Since the CodeBots are quite superstitious, they refuse to stay in any of the free rooms, or any of the rooms below any of the free rooms. Given matrix, a recta..
2020.07.11