TIL

TIL 241108

muerha 2024. 11. 8. 19:29

 

 

 

오늘 한 것

 

 

  • 코드카타 
 

[프로그래머스] 서울에서 김서방 찾기(Java)

나의 풀이class Solution { public String solution(String[] seoul) { String answer = ""; for(int i = 0; i    다른 사람의 풀이class Solution { public String solution(String[] seoul) { int i = 0; for (String s : seoul) { if (s.equals("Kim")) { b

muerha.tistory.com

 

  • 개인 과제 트러블 슈팅 작성
 

개인과제 트러블슈팅 - 일정 관리 앱

메모 수정 API를 작성하던 중@PutMapping("/{id}")public ResponseEntity updateSchedule( @PathVariable Long id, @RequestBody ScheduleRequestDto requestDto){ return new ResponseEntity(scheduleService.updateSchedule( id, requestDto.getTitle(), requestD

muerha.tistory.com

 

  • 일정 관리 앱 과제 제출
  • 과제 해설 영상 확인

'TIL' 카테고리의 다른 글

TIL 241112  (1) 2024.11.12
TIL 241111  (0) 2024.11.11
TIL 241107  (0) 2024.11.07
TIL 241106  (0) 2024.11.06
TIL 241105  (0) 2024.11.05