공부방(74)
-
[우리FIS아카데미/5기] 클라우드 서비스 개발 1주차 회고
0701 - " 우리 FISA 입과를 환영합니다! " 첫 날은 여러가지 OT와 수업을 위한 공지사항 안내를 받았다! 가장 중요한 것들은 수업 준비를 위해 지각하지 말고,본인이 무엇을 공부하고 있는지 이해하고,목표를 위해 계속해서 도전하자 ! 이다 취업에 필요한 기본적인 항목들도 알려주셨는데, 스스로 부족한 것들이 많다고 느꼈다.앞으로 시간 틈틈이 준비하고, 나중에 시간이 부족해서 놓치는 상황은 만들고 싶지 않다.. 누구에게라도 배울 점이 있다 !! 강사님이 말씀해 주신 문장인데, 와닿았다나도 배울 점이 가득한 사람으로 성장하기 위해 노력해야겠다!!0702 - "HTML과 CSS" Q. 오늘 학습한 내용은?html와 css의 기본 문법정망정말 오랜만에 보는 html, css 코드라서 익숙하지 않아 따라..
2025.07.06 -
[LeetCode] 49.Group Anagrams
문자열 배열을 받아 애너그램 단위로 그룹핑하라. - 애너그램이란?문자열 내부의 글자 순서를 바꿔서 다른 의미를 갖는 단어로 바꾸는 것을 말한다. 1. 아이디어1. hashmap을 생성하여, string,string을 저장할 수 있게 한다2. strs의 기존 단어를 key로, strs의 각 단어들을 정렬한 단어를 value로 저장한다3. 이후, value값이 같은 key들을 모아서 하나의 array로 생성하여, output으로 반환한다. 2. 제출 코드import java.util.*;class Solution { public List> groupAnagrams(String[] strs) { HashMap> result = new HashMap> (); for(String s..
2025.07.06 -
[LeetCode] 819. Most Common Word
금지된 단어를 제외하고 가장 흔하게 등장하는 단어를 출력하라.대소문자를 구분하지 않으며, 구두점(마침표, 쉼표 등) 또한 무시한다. 1. 가장 먼저 떠올린 아이디어1. paragraph 문자열을 split하여 hashmap으로 생성한다 value는 0으로 초기화 2. list에서 한 원소씩 가져오며, banned에 포함된 단어라면,pass 3. banned에 없는 단어라면 += 1 4. hashmap 중 value가 최대인 단어 반환 위 순서대로 풀이 아이디어를 떠올려 봤다! class Solution { public String mostCommonWord(String paragraph, String[] banned) { // 1. hashmap 생성하기 Map wordM..
2025.07.04 -
[기사읽기] [Graphic News] 90% of global citizens want to ban unrecyclable plastic
영어한국어ban금지hazardous 위험한prohibit금지하다disposal처분 CommentI think I have to do anything for earth's safety.But I don't have many situations to protect our environment, and The big companies should do these actions as soon as possible.Because Many Big companies used various plastics and emited carbon dioxide.The key of earth environment depends on big companies's hand.So, First, I have to use many-use..
2024.05.23 -
[기사읽기] [New in Korean] Lee Seo-su's experience opening cafe reflected in her latest novel
영어한국어sleep soundly푹 자다 go out of business폐업is counting losses손실을 계산하고 있다.dire무서운 institution기관a blind eye눈이 멀다precariously위태롭게Meanwhile 그 동안에being left off 제외되고 solidarity 연대, 연대감. CommentIn recent, I didn't read the books because I dont't have the (여유로운)leisurely time.I need the time to sleep soundly over the 7 hours. for at least 7 hours.But when i go to the school early, i had to wake up in t..
2024.05.09 -
[기사읽기] 'Moon of Seoul' balloon ride prepares to take flight in June
영어한국어The Seoul Metropolitan Government서울시청tethered 묶인landscaping 조경precede 앞서다undergo 받다Aviation 비행shrubs 관목under construction 공사중inconvenience 불편assured 자신있는 vowing 맹세하다 CommentsWhen i saw this article, i'm very excited!Because this moon attraction is exciting many people!But, actually i'm worried about that attractions safety.Of course, this article said that our first priority is safety!.h..
2024.05.02