# Kata

[CodeKata JS] Training JS #14: Methods of Number object--toString() and toLocaleString()
Lesson 이번에는 Number 객체의 두 가지 유용한 메서드인 toString()과 toLocaleString()에 대해 배워보겠습니다. 두 가지 방법의 기본 사용법은 숫자를 문자열로 변환하는 것입니다. 다음을 보세요: 숫자를 문자열 표현으로 변환하려는 경우 일반
TIL no.94 - Kata - JavaScript - 1 - Vasya Clerk
1. Question The new "Avengers" movie has just been released! There are a lot of people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 dollar bill. An "Avenge...
TIL no.93 - Kata - Python - 3 - Credit Card Mask
1. Question 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 y...
TIL no.87 - Kata - Python - 2 - List Filtering
1. Question In this kata you will create a function that takes a list of non-negative integers and strings and returns a new list with the strings filtered out. Example) 2. My Solution isinstance를 ...
TIL no.75 - Kata - Python - 1 - Disemvowel Trolls
요즘 Code Kata를 푸는 방식이 굳어지고 있다는 것을 느꼈습니다. 다른 사람들의 풀이를 보면서 반성해보는 시간을 갖기 위해 CodeWars를 짬짬히 풀어보려고 합니다. 1. Question Trolls are attacking your comment section! A common way to deal with this situation is to...