0203. Parse float Write function parse_float which takes a string/list and returns a number or 'none' if conversion is not possible. Solution: def parse_float(string: str) -> float | None: try: return float(string) except (ValueError, TypeError): return None 나는 이렇게 학습한다/Algorithm & SQL 2023.02.03
Count characters in your string 문제 설명 The main idea is to count all the occurring characters in a string. If you have a string like aba, then the result should be {'a': 2, 'b': 1}. What if the string is empty? Then the result should be empty object literal, {}. 해결 방법 1. 문자열을 요소별로 반복한다. 2. 문자열과 문자열의 수를 딕셔너리 키 값으로 넣는다. def count(string): dict = {} for i in string: try: dict[i] += 1 except KeyError: dict[i] = 1 return dict if로 풀 .. 나는 이렇게 학습한다/Algorithm & SQL 2022.02.21