토익 단어 4일차
토익 단어 4일차 영어공부 2024. 4. 29. 22:36

4일차 예문After the challenging process, our supervisor will consult with the employee to make sure the invoice is ready to mail no later than tomorrow, ensuring all transfer details are accepted and properly labeled. Then, he will head back to his office to finalize other pending tasks."The reception will celebrate the holiday, while the branch manager works to lower costs and improve inventory mon..

토익 단어 3일차
토익 단어 3일차 영어공부 2024. 4. 28. 22:55

3일차 예문The responsible committee agreed to revise the utility bill, offer a new subscription, and organize a formal banquet after the session.Our available colleague will review the repair status, approve the document, and record the presentation order before you get to return.Please join the negotiation session, borrow the projection equipment, and leave the charge to your device at the bottom u..

토익 단어 2일차
토익 단어 2일차 영어공부 2024. 4. 27. 23:54

2일차 예문One sunny morning, John decided to clear out his garage, which had become a messy pile of old furniture and boxes. He started to display his tools on a bench and extended a tarp to border his workspace. With a strong lift, he began to row each item into its rightful place.He found an old bookshelf that he decided to store in the attic. He picked up the shelf and served himself a big challe..

토익공부 시작 및 단어 1일차, 살아있는 공부하기
토익공부 시작 및 단어 1일차, 살아있는 공부하기 영어공부 2024. 4. 26. 15:11

저는 영어 단어를 참 못 외웁니다.그동안 많은 영어 공부를 하고 시중에 존재하는 공부방법은 다 해본 것 같은데도 작은 단어장 한 권을 마스터하지 못했습니다.🤣 이번에 좋은 공부방법을 찾았는데요, 이것을 제 공부 전체에 적용해보고 있습니다.1) 암기를 잘하는 방법은 역설적으로 암기량을 줄이는 것이라고 합니다.2) 이해를 통한 암기가 가장 좋은 방법이고, 3) 공부하는 과정에서 항상 질문을 던져야만 뇌가 깨어있다고 합니다.그리고 4) 순서도 매우매우 중요합니다.코끼리를 냉장고에 넣으려면 냉장고를 연 다음, 코끼리를 넣어야 한다는 재밌는(??) 논리처럼 말이죠. 영어 고수들은 하나같이 단어를 문장으로 공부하거나, 그냥 문장자체로 외우라고 합니다.그래서 이렇게 공부하려고 단어장의 예문을 보면,,, 그 단어에 ..

리트코드 - 48. Rotate Image
리트코드 - 48. Rotate Image CS/코딩테스트 2024. 4. 12. 23:18

리트코드 - 48. Rotate Image 출처 - https://leetcode.com/problems/rotate-image/description/?envType=study-plan-v2&envId=top-interview-150 문제 설명 n x n 2D 행렬로 표현된 이미지가 주어집니다. 이 이미지를 시계 방향으로 90도 회전시켜야 합니다. 이미지를 제자리에서 회전시켜야 하므로, 입력된 2D 행렬을 직접 수정해야 합니다. 다른 2D 행렬을 할당하여 회전시키면 안 됩니다. 풀이코드 class Solution { public void rotate(int[][] matrix) { int N = matrix.length; int temp = 0; int startIdx = 0; int count = N ..

String 클래스 파고들기 - 객체의 특성 및 더하기 연산의 버전별 차이
String 클래스 파고들기 - 객체의 특성 및 더하기 연산의 버전별 차이 Language/JAVA 2024. 4. 9. 16:31

String Constant Pool(String Pool) String 객체는 불변객체라고 합니다. 한 번 객체가 생성되면 값이 바뀌지 않는 것이죠. 그렇다면 아래 코드의 결과는 어떻게 될까요? public class StringExample { public static void main(String[] args) { String str1 = "abc"; String str2 = "abc"; String str3 = new String("abc"); System.out.println(str1 == str2); System.out.println(str1 == str3); System.out.println(str1.equals(str3)); } } 결과 첫번째 String과 두번째 String이 다르다고 ..

image