본문 바로가기

Intro/Daily Study Note

[220814] Daily Study Note

  Today's Plan  

Review '프로그래머스 스쿨 과제 테스트/ 프로그래밍 언어 검색 '

(1) 코드 다시 살펴보며 구조 파악 + 몰랐던 개념 복습

(2) 부족한 설명 내용 개인적으로 학습

(3) 안 보고 다시 혼자 만들어보기 

 

 

Training Coding Test with Python  

(1) 스택 - 1문제(탑)

(2) 큐 - 2문제

(3) 덱 - 2문제

(4) 스택의 활용 - 3문제


Review '프로그래머스 스쿨 과제 테스트/ 프로그래밍 언어 검색 '

 

(1) 코드 다시 살펴보며 구조 파악 + 몰랐던 개념 복습

 

11:00 AM - 12:30 AM

 

 

(2) 부족한 설명 내용 개인적으로 학습

Build Web Storage(Local Storage / Session Storage) with only JavaScript

12:30 AM - 1:40PM

 

 

( 딴 길 샘 ) GraphQL 에 대해서 학습.  ~ 3:20pm

LocalStorage에 대한 글 저자 블로그 구경하다가 해당 저자가 GraphQL에 대해 설명한 글이 있는데, 전부터 이것에 대해서 정리 한 번 해보고 싶었어서 보기로 했다. LocalStorege 이용에 대한 튜토리얼을 깔끔하게 잘 써서 GraphQL도 잘 설명했을 것 같은 기대감 때문에. 계획에 없던 내용이지만 트렌디한 기술이므로 알아두면 좋을 듯 해서 딴 길 선택.

 

https://www.digitalocean.com/community/tutorials/an-introduction-to-graphql

 

An Introduction to GraphQL | DigitalOcean

 

www.digitalocean.com

 

(딴 길 학습) API, Library, Package 등 용어들에 대한 구분과 이해가 모호한 상태이다. 이거 좀 짚어보자. 

~ 4:50pm

 

API, Library, FrameWork, Package, Module 각 개념 정의하고 서로 비교했음. 이제 이해가 명확하다.

 

 

(3) 안 보고 다시 혼자 만들어보기 


 

Training Coding Test with Python  

 

(1) 스택 - 1문제(탑)

https://proprotrainee.tistory.com/163

 

[ BOJ / 파이썬 ] 2493 탑

이 문제가 스택 유형이라는 것을 알고 있어서 쉽게 풀 수 있을 것 같다는 생각을 했다. 혼자였으면 스택이라는 것도 파악 못 할 뻔 했어서 그걸 아니까 조금 자신감이 생긴 느낌이었다. / 제출 1 /

proprotrainee.tistory.com

 

(2) 큐 - 2문제

 

https://proprotrainee.tistory.com/164

 

[ BOJ / 파이썬 ] 18258 큐2

/ 제출 1 / import sys input = sys.stdin.readline from collections import deque n = int(input()) queue = deque([]) for i in range(n): oper = input().strip() if oper[:4] == 'push': oper, x = oper.spli..

proprotrainee.tistory.com

https://proprotrainee.tistory.com/165

 

[ BOJ / 파이썬 ] 2164 카드 2

/ 제출 1 / import sys input = sys.stdin.readline from collections import deque n = int(input()) queue = deque([i+1 for i in range(n)]) while True : queue.popleft() if len(queue) != 1: queue.append(q..

proprotrainee.tistory.com

 

(3) 덱 - 2문제

 

https://proprotrainee.tistory.com/166

 

[ BOJ / 파이썬 ] 1021 회전하는 큐

/ 제출 1 / import sys input = sys.stdin.readline from collections import deque n, m = map(int, input().split()) q = deque([i+1 for i in range(n)]) target = deque(list(map(int, input().split()))) res..

proprotrainee.tistory.com

https://proprotrainee.tistory.com/167

 

[ BOJ / 파이썬 ] 5430 AC

/ 제출 1 / import sys input = sys.stdin.readline tc = int(input()) for i in range(tc): oper = input().strip() n = int(input()) nums = input() if n == 0: print('error') break nums = nums[1:-2] if len..

proprotrainee.tistory.com

 

(4) 스택의 활용 - 3문제

'Intro > Daily Study Note' 카테고리의 다른 글

[220816] Daily Study Note  (0) 2022.08.16
[220815] Daily Study Note  (0) 2022.08.15
[220812] Daily Study Note  (0) 2022.08.13
[220811] Daily Study Note  (0) 2022.08.11
[220809] Daily Study Note  (0) 2022.08.10