일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SECS-II
- Computer Science
- 프로그래머스
- SWEA
- SW Expert Academy
- CS
- Spring
- 자바
- java
- 파이썬
- spring boot
- programmers
- Spotify Api
- Baekjoon
- c
- Spring JPA
- modern c++
- MYSQL
- 회원가입
- C++
- 회귀
- spotify
- linux
- Gem
- 스포티파이
- SECS
- python
- regression
- 백준
- SECS/GEM
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12925 문자열을 정수로 바꾸기 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12925
문자열을 정수로 바꿔주는 문제이다.
문자열을 정수로 바꾸는 방식에는 여러가지가 있지만 그중에 Integer함수를 이용을 해주면 자동으로 정수를 바꿔주기 때문에 애용하고 있다.
class Solution {
public int solution(String s) {
int answer=Integer.parseInt(s);
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12926 시저 암호 (0) | 2021.01.08 |
---|---|
[Programmers 프로그래머스] 70128 내적 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12922 수박수박수박수박수박수? (0) | 2021.01.07 |
[Programmers 프로그래머스] 12921 소수 찾기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12919 서울에서 김서방 찾기 (0) | 2021.01.07 |
Comments