글
프로그래머스 C# K의 개수(10으로 나눈 나머지 확인, 계속 10으로 나누기, P, J)
프로그래밍
2022. 12. 31. 00:34
728x90
SMALL
using System;
public class Solution {
public int solution(int i, int j, int k) {
int answer = 0;
int temp = 1;
for(int a=i;a<=j;a++)
{
temp = a;
while(temp > 0)
{
if(temp%10 == k) // 마지막 자리가 k이면 answer++
{
answer++;
}
temp /= 10;
}
}
return answer;
}
}
//
using System;
using System.Linq;
public class Solution {
public int solution(int i, int j, int k) {
int answer = Enumerable.Range(i, j - i + 1).Sum(x => x.ToString().Count(o => o.ToString() == k.ToString()));
return answer;
}
}
파이썬
/////
def solution(i, j, k):
answer = 0
for n in range(i, j + 1):
answer += str(n).count(str(k))
return answer
/////////
from collections import Counter
def solution(i, j, k):
answer = 0
for n in range(i,j+1):
answer += Counter(str(n))[str(k)]
return answer
자바
////////////
class Solution {
public int solution(int i, int j, int k) {
String str = "";
for(int a = i; a <= j; a++)
{
str += a+"";
}
return str.length() - str.replace(k+"", "").length();
}
}
////////////
class Solution {
public int solution(int i, int j, int k) {
int answer = 0;
for (int num = i; num <= j; num++)
{
int tmp = num;
while (tmp != 0)
{
if (tmp % 10 == k)
answer++;
tmp /= 10;
}
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 진료 순서 정하기(P, J) (0) | 2022.12.31 |
---|---|
프로그래머스 C# 가까운 수 찾기(절댓값의 차, Math.Abs,P,J) (0) | 2022.12.31 |
프로그래머스 C# 2차원으로 만들기(2차원 배열, int[,], P, J) (0) | 2022.12.31 |
프로그래머스 C# 모스 부호1(IndexOf, foreach, Split, P, J) (0) | 2022.12.31 |
프로그래머스 C# A로 B 만들기(Concat, Linq, OrderBy, P, J) (0) | 2022.12.30 |