TIL) 프로그래머스 기초 트레이닝 23-24 Day
프로그래머스 기초 트레이닝1) 부분 문자열https://school.programmers.co.kr/learn/courses/30/lessons/181842 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.krclass Solution { public int solution(String str1, String str2) { return str2.contains(str1) ? 1 : 0; }} 2) 꼬리 문자열https://school.programmers.co.kr/learn/courses/30/lessons/181841 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total ..
2024.12.16