문제 설명String형 배열 seoul의 element중 Kim의 위치 x를 찾아, 김서방은 x에 있다는 String을 반환하는 함수, solution을 완성하세요. seoul에 Kim은 오직 한 번만 나타나며 잘못된 값이 입력되는 경우는 없습니다.제한 사항seoul은 길이 1 이상, 1000 이하인 배열입니다.seoul의 원소는 길이 1 이상, 20 이하인 문자열입니다.Kim은 반드시 seoul 안에 포함되어 있습니다.입출력 예seoulreturn[Jane, Kim]김서방은 1에 있다 풀이 12345678910111213class Solution { public String solution(String[] seoul) { String answer = ""; String k = "Kim"; for(int..
Methods of String class substring()to get substring using substring(include index,exclude index); 12String i="java"; System.out.println(i.substring(1,2));//a cs length()to get the length of the string. 123String s="javastring"; System.out.println("string length is: "+s.length());//10 Colored by Color Scriptercs equals() equals() method compares two strings found on the content of the string. if ..
- Total
- Today
- Yesterday
- HashMap
- 알고리즘
- Object type casting
- java
- rest parameter
- easy algorithm
- ... in Javascript
- 프로그래머스 알고리즘문제
- javascript
- repeat()
- spring boot application
- C++
- algorithm
- hackerrank
- math.max
- hackerrank solution
- easy javascript algorithm
- 프로그래머스
- Javascript Algorithm
- 프로그래머스 알고리즘
- compareTo()
- substring()
- code refactoring
- equals()
- string class in java
- hackerrank javascript solution
- HackerRank Algorithm
- Collection Framework
- math.abs
- hackerrank javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |