글
프로그래머스 C# 문자열안에 문자열(string.Contains, P, J)
프로그래밍
2022. 12. 29. 11:09
728x90
SMALL
using System;
public class Solution {
public int solution(string str1, string str2) {
int answer = 0;
if(str1.Contains(str2))
{
answer =1;
}
else
{
answer = 2;
}
return answer;
}
}
파이썬
/////
def solution(str1, str2):
return 1 if str2 in str1 else 2
def solution(str1, str2):
return 1 + int(str2 not in str1)
자바
class Solution {
public int solution(String str1, String str2) {
return (str1.contains(str2)? 1: 2);
}
}
class Solution {
public int solution(String str1, String str2) {
if (str1.contains(str2))
{
return 1;
}
return 2;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 자릿수 더하기(while문 활용하기) (0) | 2022.12.29 |
---|---|
프로그래머스 C# 배열의 유사도(문자열 Equals, P,J) (0) | 2022.12.29 |
프로그래머스 C# 옷가게 할인 받기(if문, 3항 연산자, 삼항연산자, P, J) (0) | 2022.12.29 |
프로그래머스 C# 최빈값 구하기(count, JAVA) (0) | 2022.12.28 |
프로그래머스 C# 중앙값 구하기(int[] -> Array.Sort(), 홀수 배열만, P, J) (0) | 2022.12.28 |