본문 바로가기

파이썬10

[파이썬/알고리즘] Leetcode - 937. Reorder Data in Log Files [문제] You are given an array of logs. Each log is a space-delimited string of words, where the first word is the identifier. There are two types of logs: Letter-logs: All words (except the identifier) consist of lowercase English letters. Digit-logs: All words (except the identifier) consist of digits. Reorder these logs so that: The letter-logs come before all digit-logs. The letter-logs are sor.. 2021. 7. 3.
[파이썬/알고리즘] Leetcode - 1689. Partitioning Into Minimum Number Of Deci-Binary Numb [문제] A decimal number is called deci-binary if each of its digits is either 0 or 1 without any leading zeros. For example, 101 and 1100 are deci-binary, while 112 and 3001 are not. Given a string n that represents a positive decimal integer, return the minimum number of positive deci-binary numbers needed so that they sum up to n. [예시] Example 1: Input: n = "32" Output: 3 Explanation: 10 + 11 + .. 2021. 6. 28.
[파이썬/알고리즘] 프로그래머스 - JadenCase 문자열 만들기 (정규식) 문제 설명 JadenCase란 모든 단어의 첫 문자가 대문자이고, 그 외의 알파벳은 소문자인 문자열입니다. 문자열 s가 주어졌을 때, s를 JadenCase로 바꾼 문자열을 리턴하는 함수, solution을 완성해주세요. 제한 조건 s는 길이 1 이상인 문자열입니다. s는 알파벳과 공백문자(" ")로 이루어져 있습니다. 첫 문자가 영문이 아닐때에는 이어지는 영문은 소문자로 씁니다. ( 첫 번째 입출력 예 참고 ) 입출력 예 s return "3people unFollowed me" "3people Unfollowed Me" "for the last week" "For The Last Week" "aaaaa aaa" "Aaaaa Aaa" "hello m y friend" "Hello M Y Friend" .. 2021. 6. 26.
[파이썬] AH01223: couldn't spawn child process 해결방법 파이썬 오류(AHAH01223: couldn't spawn child process) 해결방법 #! 뒤에 python이 설치된 경로를 붙여넣고 \python.exe를 적어준다. ex) 전 print("Content-Type: text/html") print() 후 #!C:\Program Files (x86)\Python38-32\python.exe print("Content-Type: text/html") print() 2021. 1. 20.