-
[알고리즘/자바스크립트] 삼각형 판별문제 (Is this a triangle?)Algorithm 2019. 2. 18. 21:55
-해당 문제는 codewars사이트의 level7 문제입니다. (1~8단계 중 8단계가 가장 쉬운 레벨)- [문제] Implement a method that accepts 3 integer values a, b, c. The method should return true if a triangle can be built with the sides of given length and false in any other case. (In this case, all triangles must have surface greater than 0 to be accepted). Test.describe("PublicTest", function() { Test.assertEquals(isTriangle(1,2,2), t..
-
[알고리즘/자바스크립트] 완벽한 제곱근 구하기 (Find the next perfect square!)Algorithm 2019. 2. 18. 00:08
-해당 문제는 codewars사이트의 level7 문제입니다. (1~8단계 중 8단계가 가장 쉬운 레벨)- [문제] You might know some pretty large perfect squares. But what about the NEXT one? Complete the findNextSquare method that finds the next integral perfect square after the one passed as a parameter. Recall that an integral perfect square is an integer n such that sqrt(n) is also an integer. If the parameter is itself not a perfect squa..
-
[알고리즘/자바스크립트] 마지막 4글자 제외하고 #으로 치환하기 (Credit Card Mask)Algorithm 2019. 2. 17. 22:53
-해당 문제는 codewars사이트의 level7 문제입니다. (1~8단계 중 8단계가 가장 쉬운 레벨)- [문제] Usually when you buy something, you're asked whether your credit card number, phone number or answer to your most secret question is still correct. However, since someone could look over your shoulder, you don't want that shown on your screen. Instead, we mask it. Your task is to write a function maskify, which changes all but the ..
-
[알고리즘/자바스크립트] 최소값 구하기 / 단어 중 가장 길이가 짧은 단어의 length를 구하기 (Shortest Word)Algorithm 2019. 2. 17. 11:59
-해당 문제는 codewars사이트의 level7 문제입니다.(1~8단계 중 8단계가 가장 쉬운 레벨)- [문제] Simple, given a string of words, return the length of the shortest word(s).String will never be empty and you do not need to account for different data types. Test.describe("Example tests",_=>{Test.assertEquals(findShort("bitcoin take over the world maybe who knows perhaps"), 3);Test.assertEquals(findShort("turns out random test cas..
-
[알고리즘/자바스크립트] 약수 구하는 알고리즘 (Find the divisors!)Algorithm 2019. 2. 17. 00:14
오늘부터 시간이 날 때마다 https://www.codewars.com/의 알고리즘 문제들을 풀어보고 문제를 풀며 나의 굳은 뇌를 쥐어짜는 과정에서 우러나오는 온갖 고뇌를 글로 적어보려고 한다... 알고리즘 서적을 찾아보면 죄다 파이썬이나 자바 기반으로 되어있는데 난 내가 할 줄 아는 자바스크립트로 풀어볼 예정이다. codewars는 해외 사이트라 문제가 죄다 영어다. 한국에도 프로그래머스라는 유명한 알고리즘 사이트가 있는데 문제는 이노무 프로그래머스에서 문제 푸는 사람들을 죄다 천재로 보는건지 문제 수준이 너무 높다. 분명 레벨1이라고 해서 즐거운 마음으로 문제를 읽었는데 문제 읽는데만 5분 해석하는데 10분 문제 푸는 데 하루가 소요되는 기적... 문제의 수도 해외 사이트에 비해 적을 뿐더러 레벨도 ..