일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 코어 자바스크립트
- 리액트
- 타입스크립트 올인원
- 백준
- codestates
- 프로그래머스
- 알고리즘
- 파이썬
- 렛츠기릿 자바스크립트
- 리덕스
- 손에 익히며 배우는 네트워크 첫걸음
- python
- 코드스테이츠
- javascript
- 토익
- 회고
- 제로초
- til
- programmers
- SQL 고득점 Kit
- 2주 프로젝트
- js
- Async
- 리트코드
- 타입스크립트
- 정재남
- 4주 프로젝트
- 타임어택
- LeetCode
- 자바스크립트
- Today
- Total
목록python (6)
Jerry
https://leetcode.com/problems/merge-two-sorted-lists/description/ 오늘풀어본 문제는 " Merge Two Sorted Lists" 이다.파라미터로 두 개의 싱글 링크드리스트가 주어진다. 간단히 말하면, 두 링크드리스트를 합쳐야한다(merge). 단, 정렬된 상태로 말이다(sorted). 풀이 #1 - Iteration# Definition for singly-linked list.# class ListNode:# def __init__(self, val=0, next=None):# self.val = val# self.next = nextclass Solution: def mergeTwoList..
https://leetcode.com/problems/valid-parentheses/description/ 오늘풀어본 문제는 " Valid Parentheses" 이다.주어진 괄호 3가지 유형, 대괄호([ ]), 중괄호({ }), 소괄호(( ))을 일정 조건에 부합하지는 여부를 판단하는 문제이다. 풀이 #1 - 딕셔너리(dictionary) + Stackclass Solution: def isValid(self, s: str) -> bool: stack = [] brackets = { "]": "[", "}": "{", ")": "(", } for bracket in s: ..
https://leetcode.com/problems/longest-common-prefix/description/ 오늘 풀어본 문제는 " Longest Common Prefix" 이다.주어진 리스트 안에 있는 문자열들 간에 가장 긴 공통 접두어를 출력하는 것이다. 풀이 #1 - Loop + Filterclass Solution: def longestCommonPrefix(self, strs: List[str]) -> str: minStr = min(strs, key=len) if len(strs) == 0 or len(strs) == 1 or len(minStr) == 0: return minStr for i in range(len(minStr))..
input_data = input().split(' ') a = int(input_data[0]) b = int(input_data[1]) print(a / b)
input_data = input().split(' ') a = int(input_data[0]) b = int(input_data[1]) print(a - b)
vscode language change (한국어/영어로 언어 변경하기) - ctrl + shift + P로 커맨드 팔레트 실행 후 'language'를 검색한다. - 표시 언어 구성(Configure Display Language)를 선택합니다. - 나타난 언어를 선택하거나 희망하는 언어를 설치 후 설정한다. print 라는 함수 print(name + "이는" + age + "살이며, " + hobby + "을 아주 좋아해요") TypeError: can only concatenate str (not "int") to str 오직 str로 str를 연결할 수 있다. print문 안에서 '+'를 이용해 정수를 출력하기 위해선 정수를 str로 감싸줘 문자로 바꿔줘야한다. print문 안에서 ','를 이용..