문제링크 문제 The goal of this exercise is to convert a string to a new string where each character in the new string is "(" if that character appears only
문제링크 - 문제 Some numbers have funny properties. For example: 89 8¹ + 9² = 89 * 1 695 6² + 9³ + 5⁴= 1390 = 695 * 2 46288 4³ + 6⁴+ 2⁵ + 8⁶ + 8⁷ = 2360688 = 46288 * 51 Given a positive integer n wri...
🚀 문제를 풀어나갈 때 생각의 흐름을 정리합니다. 또한 새로운 풀이에 대한 코드를 분석하고 모르는 부분에 대해서 정리합니다. 생각이 다른 부분에 대한 피드백은 언제나 환영합니다. 틀린 내용에 대한 피드백 또한 항상 감사합니다. 문제링크 문제 Task: Your task is to write a function which returns th...
문제링크 문제 There is an array with some numbers. All numbers are equal except for one. Try to find it! findUniq([ 1, 1, 1, 2, 1, 1 ]) === 2 findUniq([ 0, 0, 0.55, 0, 0 ]) === 0.55 It’s guaranteed that a...
문제링크 문제 Complete the function that accepts a string parameter, and reverses each word in the string. All spaces in the string should be retained. Examples "This is an example!" ==> "sihT si na !elpm...
문제링크 문제 Your task is to add up letters to one letter. The function will be given a variable amount of arguments, each one being a letter to add. Notes: Letters will always be lowercase. Letters can ...
문제링크 문제 Given a number n, draw stairs using the letter "I", n tall and n wide, with the tallest in the top left. For example n = 3 result in "I\n I\n I", or printed: Another example, a 7-step stair...
문제링크 문제 Implement the function uniqueinorder which takes as argument a sequence and returns a list of items without any elements with the same value next to each other and preserving the original ord...
문제링크 문제 You have an array of numbers. Your task is to sort ascending odd numbers but even numbers must be on their places. Zero isn't an odd number and you don't need to move it. If you have an empty...
문제링크 문제 Given an array, find the integer that appears an odd number of times. There will always be only one integer that appears an odd number of times. 🚩 문제해석 주어진 배열에서 '홀수'번 반복되는 수를 찾으시오. 문제접근 첫번...
문제링크 문제 Write a function that accepts an array of 10 integers (between 0 and 9), that returns a string of those numbers in the form of a phone number. Example: createPhoneNumber([1, 2, 3, 4, 5, 6, ...
문제링크 문제 The maximum sum subarray problem consists in finding the maximum sum of a contiguous subsequence in an array or list of integers: ` maxSequence([-2, 1, -3, 4, -1, 2, 1, -5, 4]) // should be 6...
문제링크(https://www.codewars.com/kata/55bf01e5a717a0d57e0000ec)) 문제 Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the numb...
문제링크 문제 If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Finish the solution so that it returns the sum of all the mu...
문제링크 문제 Write an algorithm that takes an array and moves all of the zeros to the end, preserving the order of the other elements. 🚩 문제해석 배열 안의 숫자 0을 배열의 끝으로 옮기시오. 단 그 외의 배열안의 요소의 순서는 그대로 유지되어야 한다. ...
문제링크 문제 1️⃣ Pete likes to bake some cakes. He has some recipes and ingredients. Unfortunately he is not good in maths. Can you help him to find out, how many cakes he could bake considering his recip...
문제링크 문제 This time no story, no theory. The examples below show you how to write function accum: Examples: The parameter of accum is a string which includes only letters from a..z and A..Z. 🚩문제해석 ...
문제링크 문제 Count the number of divisors of a positive integer n. Random tests go up to n = 500000. Examples 🚩문제해석 주어진 수의 약수의 개수를 구하시오. divisor : 약수 문제 접근 첫번째 풀이 아주 기본적인 접근이다. n까지의 자연수 중에서 소수의 개수를 ...
문제링크 문제 Given the triangle of consecutive odd numbers: Calculate the row sums of this triangle from the row index (starting at index 1) e.g.: 문제접근 위 삼각형은 구성이 모두 홀수로 되어 있다. 또한 삼각형에서 n열이라고 했을 때, 그 열은...
문제링크 문제 Return the number (count) of vowels in the given string. We will consider a, e, i, o, and u as vowels for this Kata. The input string will only consist of lower case letters and/or spaces. ...
문제링크 문제 1️⃣ It's a Pokemon battle! Your task is to calculate the damage that a particular move would do using the following formula (not the actual one from the game): Where: attack = your attack po...
문제링크 문제 Count the number of Duplicates Write a function that will return the count of distinct case-insensitive alphabetic characters and numeric digits that occur more than once in the input string....
문제링크 문제 Task A noob programmer was given two simple tasks: sum and sort the elements of the given array arr = [a1, a2, ..., an]. He started with summing and did it easily, but decided to store the s...
문제링크 문제 1️⃣ You are going to be given an array of integers. Your job is to take that array and find an index N where the sum of the integers to the left of N is equal to the sum of the integers to th...
문제링크 문제 Task Given an array of integers , Find the minimum sum which is obtained from summing each Two integers product . Notes Array/list will contain positives only . Array/list will always has e...
문제링크 문제 > 문제 간단 설명! > 이러한 연속된 홀수로 구성된 숫자 삼각형이 주어졌을때,, 각각에 행에 해당하는 숫자의 집합을 배열로 리턴하시오. 문제접근 이 문제는 이전에 풀었던 문제인 Sum of odd numbers의 시리즈물이다. 문제를 접근하는 방법은 비슷하였다. 우선 1️⃣ 삼각형 안의 연속된 숫자를 배열이라고 생각하고 2️⃣ 해당 열...
문제 링크 문제 > 문제 간단 설명 배열이 2개(a,b) 주어진다. 각각의 a배열 요소의 제곱이 b배열 요소에 속할 때, 최종 결과값으로 true를 리턴한다. 만약 b배열의 요소 중에 a배열 요소의 제곱이 1개라도 없는 경우 false를 리턴한다. 예시1 위의 두 배열을 문제의 조건에 맞춰 알기 쉽게 나타내면 아래와 같다. 최종적으로 위 두 배열의...
문제링크 문제 오늘 푼 문제는 주어진 문자열에서 중복되는 단어를 제거하는 문제이다. 예를 보면 쉽게 이해 할 수 있다. Input: Output: 문제접근 내가 문제를 푼 방식은 위와 같다. 문자열을 배열로 바꾼 뒤 그 배열을 순회하면서 중복되지 않는 값만 골라서 result라는 배열에 넣어준다. 첫번째 요소는 result가 빈 배열이기 때문에 무...
문제링크 문제 Your goal in this kata is to implement a difference function, which subtracts one list from another and returns the result. It should remove all values from list a, which are present in lis...
문제링크 문제 Examples Goal The goal is to come up with a function that can calculate inversions for any arbitrary array 주어진 배열을 크기순으로 정렬한다고 했을 때, 그 정렬 과정 속에서 역순인 경우가 몇 번 나오는지 구하시오 문제 접근 이 문제는 버블 정렬의 과정...
Move the first letter of each word to the end of it, then add "ay" to the end of the word. Leave punctuation marks untouched.Examples🚩 각 단어의 첫번째 글자를
Your task is to sort a given string. Each word in the string will contain a single number. This number is the position the word should have in the res