본문 바로가기

내일배움캠프20

[TIL] 07.16 https://1chanhue1.tistory.com/75 [kotlin] Strategy Pattern 이란Strategy Pattern 이란 ? 정책 패턴(Policy Pattern) 이라고도 불린다. 알고리즘군을 정의하고 캡슐화해서 각각의 알고리즘군을 수정해서 사용할 수 있게 해줌객체의 행위를 변경하고 싶은 경우 직접1chanhue1.tistory.com 2024. 7. 16.
[TIL] 07.14 https://1chanhue1.tistory.com/72 [kotlin] 싱글톤 패턴(Singleton pattern)에 대하여싱글톤 패턴 어떤 클래스의 인스턴스는 오직 1개임을 보장, 이 인스턴스는 전역에서 접근할 수 있는 디자인 패턴이다.어플리케이션의 시작부터 종료까지 1번의 생성으로 고정된 영역 메모리를1chanhue1.tistory.com 2024. 7. 16.
[TIL] 07.10 https://1chanhue1.tistory.com/69 [kotlin 문법] sorted(), sort(), sortedWith(), sortWith() , sortedBy, sortBy()코틀린에서 컬렉션을 정렬하기 위해 사용하는 함수들인 sorted(), sort(), sortedWith(), sortWith(), sortedBy(), sortBy() 에 대해서 설명하겠습니다. 1. sorted()sorted() 함수는 데이터 변경이 안되는 리스트(Immutab1chanhue1.tistory.comhttps://1chanhue1.tistory.com/68 3과 32, 이런 경우 어떻게 해결 할 것 인가 ? 예외 발생 !두 번째 시도숫자 배열을 문자배열로 변환 후 비교해보자 ->" data-og-h.. 2024. 7. 12.
[TIL] 07.09 https://1chanhue1.tistory.com/66 [프로그래머스 kotlin] 다리를 지나는 트럭fun solution(bridge_length: Int, weight: Int, truck_weights: IntArray): Int { var answer = 0 val truckQueue: Queue = LinkedList() val bridge: Queue = LinkedList() // 초기 다리는 빈 공간으로 채웁니다. for (i in 0 until bridge_length) { bridge.1chanhue1.tistory.com 2024. 7. 9.