본문 바로가기
르탄즈 5기

[TIL] 2024/02/01

by 박매트 2024. 2. 2.

1) CS 공부 - 메모리 (DRAM, SDRAM etc...)

이 외에도 더 했지만, 내일 github에 정리할 예정!

 

2) 코딩테스트 문풀

https://wnsgml517.tistory.com/83

 

[프로그래머스] 정렬 - H-index

나의 답 def solution(citations): max_value = [] for a in range(len(citations),0,-1): cnt_t = 0 for i in citations: if i >= a: cnt_t+=1 if (len(citations)-cnt_t) =a : return a return 0 문제를 해석한 대로....... 2중 포문을 사용하고 말았

wnsgml517.tistory.com

 

3) git 크라켄 실습 및 확인

 

4) android xml 파일 수정

 

5) 르탄즈 3주차 미션 글 작성