Write a function that takes a string of braces, and determines if the order of the braces is valid. It should return true if the string is valid, and
// A string is considered to be in title case if each word in the string is either (a) capitalised (that is, only the first letter of the word is in u
Write a function that when given a URL as a string, parses out just the domain name and returns it as a string. For example:url = "http://github.
Write a function that takes an array of numbers(integers for the tests) and a target number.It should find two different items in the array that, whe
아 많은 블로그에서 이렇게 맥?환경인지 느낌나는 코드사진을 보고 뭐지 하면서 익스텐션 찾아보다가 codesnap이란거였다!!codesnap을 검색하고 ctrl+shift+p를 눌러서 codesnap활성화하고 드래그해주면 내가 캡쳐하고싶은 코드들이 들어간다.그리고 이번문
arr의 배열에 0이있다면 0을 맨뒤로 보내주는 문제다. 처음에 sort(비교값)오름차순 뒤 reverse()메서드를 사용하고 테스트를 했는데 에러가 떠서 문제를 다시봄. 0인것만 뒤로 움직이고 나머지는 그대로인 내용을 보고 코드를 다시작성.
CreatePhoneNumberRomanNumeralsEncoder사실 이두번째문제같은경우는 좋은방법이 생각나질않아서... 좀 헤맸다..
이번문제는 조금 생각하느라 오래걸린것같다. for...in문에 대해 딥다이브로 공부한게 엊그제였는데 푸는데 도움이 됐다.Object.keys()로 접근하려했는데 어떤식으로 짜야할지 몰라서 조금 안?좋은 코드를 작성한느낌.
ROT13 is a simple letter substitution cipher that replaces a letter with the letter 13 letters after it in the alphabet. ROT13 is an example of the Ca
In this kata you have to create all permutations of a non empty input string and remove duplicates, if present. This means, you have to shuffle all le
The marketing team is spending way too much time typing in hashtags.Let's help them with our own Hashtag Generator!Here's the deal:It must start with
//문제 >DESCRIPTION: 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. 띄어쓰기
살면서 처음보는...요세푸스 순열, 요세푸스 문제라는 건데.요세푸스문제생각보다 이해가 너무 안돼서 3일은 생각한것같다...일단 푸는방법은 Queue를 이용하는 방법Circular Linked List를 이용하는 방법Recurrence Relation(점화식)을 이용하는
문제 설명.예시Examples:removNb(26) should return (15, 21), (21, 15)orremovNb(26) should return { {15, 21}, {21, 15} }orremoveNb(26) should return \[15, 21,
국비때 얼핏 지나갔던 기억만 있는 비트연산자.. 비트연산자를 이용하니 코드의 양도 짧아지고 좀더 직독이 가능했다. 이런용도로 낸문제는 아닌것같지만.
Create a function that will trim a string (the first argument given) if it is longer than the requested maximum string length (the second argument giv
descriptionYour task is to find the nearest square number, nearest_sq(n) or nearestSq(n), of a positive integer n.For example, if n = 111, then neares
DescriptionsCreate a function named rotate() that accepts a string argument and returns an array of strings with each letter from the input string bei
Deoxyribonucleic acid (DNA) is a chemical found in the nucleus of cells and carries the "instructions" for the development and functioning of living o
DESCRIPTION:Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the number of t
A square of squaresYou like building blocks. You especially like building blocks that are squares. And what you even like more, is to arrange them int
// Create a function that returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers.No floats or non - positive
DESCRIPTION:Complete the square sum function so that it squares each number passed into it and then sums the results together.
Check to see if a string has the same amount of 'x's and 'o's. The method must return a boolean and be case insensitive. The string can contain any ch
3개 문제 풀이.
1. A Needle in the Haystack (8Kyu) >DESCRIPTION: Can you find the needle in the haystack? Write a function findNeedle() that takes an array full of j
오늘의 문제 4개
진짜 못푼 4kyu문제중에 그나마 얘는 풀었다...심지어 정규식을 써야할거같아 좀 돌고 돌아서 풀긴했다...비슷한 유형 다시 봐야할 것 같다.
Count the Islands 문제는 못풀고 ,킵..
오늘은 이전에 풀어봤던 피보나치 수열과 흡사한 문제를 풀어봤다.저번에 풀었을땐 3일정도? 고민하고 머리를 쥐어 짠거 같았는데 이번엔 20분정도? 만에 푼 것 같다.순간 어 봤는데 , 하면서 혼자 codewars에서 개발자도구를 키고 혼자 테스트 해보면서 풀었다.노트와
패스트캠퍼스에서 나동빈님 javascript 코딩테스트 강의를 들으면서 풀어볼 문제를찾았다.(백준은 아무래도 아직 적응이 덜됐음..)codewars 테스트 코드에서 주어진 binary tree class가 적용이 되어 문제 제출(사이트내에서)은 문제없지만,따로 root
함수를 써서 계산하는 문제다.
XOR 연산자를 이용해서 푼방법.1^1 = 0;1^2 = 1;비트연산자사실 이건 두가지방법으로 풀어 봤는데, 이렇게 두가지가 있다. 사실 첨에 별생각없이 음 배열로 풀어야지 했던거같다. 가장 기본적인 방법을 생각해낼 수 있게 좀 더 많이 풀어봐야겠다..그리고 여담으로곧
1. 2. 첫문자만 대문자로. 3.
supermarketqueue
피보나치 수열을 이용한 문제
문제를 풀고나서 보니까 카데인 알고리즘과 연관 되어있는걸 알았다.카데인알고리즘을 꽤나 잘 설명한 영상같아 첨부함나에겐 좀 어려웠던 문제
1. 2.
DESCRIPTION:Count the number of divisors of a positive integer n.Random tests go up to n = 500000.Examples (input --> output)4 --> 3 // we have 3 divi
DESCRIPTION:IntroductionThe wave (known as the Mexican wave in the English-speaking world outside North America) is an example of metachronal rhythm a
DESCRIPTION:Once upon a time, on a way through the old wild mountainous west,…… a man was given directions to go from one point to another. The direct
%2 !==0/ %2 ===1 이거로 테스트케이스를 못넘겼었다. 음수를 생각하지 않았기 때문...
timed out 해결x 고민해보기