알고리즘 문제 풀이: 파이썬/LeetCode5 [LeetCode] The K Weakest Rows in a Matrix 문제 링크: https://leetcode.com/problems/the-k-weakest-rows-in-a-matrix/ The K Weakest Rows in a Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이: Review: 알고리즘 스터디에서 스터디원이 선정한 문제이다. 배열과 정렬을 이용하면 어렵지 않게 풀 수 있는 문제였다. 알고리즘 문제 풀이: 파이썬/LeetCode 2022. 5. 1. [LeetCode] Most Common Word 문제 링크: https://leetcode.com/problems/most-common-word/ Most Common Word - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이: 참고용 풀이: Review: 참고용 풀이에서 정규표현식을 이용해 내가 반복문과 조건문을 사용해 구현한 부분을 정말 간단하게 구현한 것을 보니 꼭 정규표현식을 제대로 정리해야겠다는 생각이 든다. Idea: 1. 문자열의 문자를 하나씩 읽어 알파벳과 공백이면 빈 문자열에 추가하고.. 알고리즘 문제 풀이: 파이썬/LeetCode 2022. 3. 8. [LeetCode] Reorder Data In Log Files 문제 링크: https://leetcode.com/problems/reorder-data-in-log-files Reorder Data in Log Files - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이: 참고용 풀이: Review: 내 풀이와 참고용 풀이의 풀이 방식은 거의 비슷한데, 나는 숫자 로그 배열을 정렬된 배열에 연결하기 위해 extend() 함수를 이용했고, 참고용 풀이에서는 +를 사용해 배열을 연결했다. 이 문제를 통해 + 연산자를 .. 알고리즘 문제 풀이: 파이썬/LeetCode 2022. 3. 8. [LeetCode] Reverse String 문제 링크: https://leetcode.com/problems/reverse-string Reverse String - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이: Review: 정말 간단한 문제지만 reverse() 함수에 대한 내용을 간단히 정리하기 위해 포스팅을 했다. reverse() 함수는 값을 반환하지 않고, 주어진 리스트를 뒤집어준다. 처음 문제를 제출했을 때 s = s.revese()과 같이 코드를 작성해서 제출을 했고, Accep.. 알고리즘 문제 풀이: 파이썬/LeetCode 2022. 3. 8. [LeetCode] Valid Palindrome 문제 링크: https://leetcode.com/problems/valid-palindrome Valid Palindrome - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이: Review: 위의 코드에서 문자 c가 알파벳인지 숫자인지 확인하는 부분에 isalpha()와 isnumeric()을 사용했는데 isalnum()을 사용했다면 두 가지 기능이 모두 적용되기 때문에 더 깔끔한 코드가 됐을 것 같다. True와 False를 반환하는 부분은 조건문 .. 알고리즘 문제 풀이: 파이썬/LeetCode 2022. 3. 7. 이전 1 다음