Algorithm/스터디

Coding Test Meeting #3

이번에 다룬 문제는 다음과 같다.

 

2023.03.07 - [Algorithm/LeetCode] - 12. Integer to Roman

2023.03.07 - [Algorithm/LeetCode] - 2319. Check if Matrix Is X-Matrix

 

Integer to Roman

숫자가 주어지면 로마자로 변경하는 문제

-> Place Value / Face Value

-> 작은 수 부터 if else -> switch case -> 최적화 여부로 binary add의 성능이 달라지는 말씀을 하심

 

Check if Matrix Is X-Matrix

정사각형이 x자로 숫자가 채워져있는지 여부 확인하는 문제

-> 쿼드 트리 압축

-> DP 정사각형을 다시 4등분하여 쪼개서 계산하는 방법 

 

시간 복잡도 및 공간 복잡도까지 고려하시는 걸 보고 더 많이 생각해야겠다는 다짐이 들었다.


 

Jazzo님의 브라우저 저장소의 차이점

https://jazzodevlab.tistory.com/112

 

8. 브라우저 저장소의 차이점 (LocalStorage, SessionStorage, Cookie)

Cookie와 Web Storage의 차이점: Cookie는 매번 서버로 전송된다. Web Storage는 저장된 데이터가 클라이언트에 존재할 뿐, 서버로 전송되지 않는다. 이것은 네트워크 트래픽 비용을 줄여주는 주요한 장점

jazzodevlab.tistory.com

프론트엔드 입장에서 브라우저 저장소를 설명하셨다.

 


다음번 문제

https://leetcode.com/problems/number-of-ways-to-select-buildings/

 

Number of Ways to Select Buildings - LeetCode

Can you solve this real interview question? Number of Ways to Select Buildings - You are given a 0-indexed binary string s which represents the types of buildings along a street where: * s[i] = '0' denotes that the ith building is an office and * s[i] = '1

leetcode.com

 

https://school.programmers.co.kr/learn/courses/30/lessons/160585

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr


알아보기

국제화 및 인코딩에 관련한 자료

 

UTF-8 / ASCII CODE / EUC-KR / ISO-

 

https://www.oreilly.com/library/view/cjkv-information-processing/9780596156114/

 

CJKV Information Processing, 2nd Edition

First published a decade ago, CJKV Information Processing quickly became the unsurpassed source of information on processing text in Chinese, Japanese, Korean, and Vietnamese. It has now been thoroughly updated … - Selection from CJKV Information Process

www.oreilly.com

 

https://d2.naver.com/helloworld/19187

https://d2.naver.com/helloworld/76650

 

AWS

SES (Simple Email Service)

코그니토 (회원 및 OAuth)

'Algorithm > 스터디' 카테고리의 다른 글

Coding Test Meeting #4  (0) 2023.04.10
Coding Test Meeting #2  (0) 2023.02.26
Coding Test Meeting #1  (0) 2021.05.19