99클럽

·TIL
오늘의 학습 키워드https://school.programmers.co.kr/learn/courses/30/lessons/140108 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr- 문자열나누기- CS, 컴퓨터 구조 학습 공부한 내용 본인의 언어로 정리하기문자답안class Solution { public int solution(String s) { int answer = 0; char x = s.charAt(0); int xCount = 1; int xNotCount = 0; for (int i = 1; i 이 문제는 처..
·TIL
오늘의 학습 키워드https://school.programmers.co.kr/learn/courses/30/lessons/147355 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr- 크기가 작은 부분 문자열- CS, 컴퓨터 구조 학습 공부한 내용 본인의 언어로 정리하기문자답안class Solution { public int solution(String t, String p) { int answer = 0; int plength = p.length(); long pLong = Long.parseLong(p); for(int i ..
·TIL
오늘의 학습 키워드https://school.programmers.co.kr/learn/courses/30/lessons/12916 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr- 문자열 내 p와 y의 개수 구하기- CS, 컴퓨터 구조 학습 공부한 내용 본인의 언어로 정리하기문자답안class Solution { boolean solution(String s) { s = s.toLowerCase(); int ps = s.length() - s.replace("p", "").length(); int ys = s.length() - s.replace("y", "")..
JH_DEV77
'99클럽' 태그의 글 목록 (3 Page)