Archive: 2018/11

0

sentences in november 2018

20181116 today’s sentencesWhat do you think ~ What did you think I would live in? What do you think I bought for your bithday party? What did you think I should prepare to get a job? What did you thin

0

Simple Pig Latin

Instructions 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 12pigIt('Pig latin is cool'); // igPay at

0

Highest Scoring Word

Instructions Given a string of words, you need to find the highest scoring word. Each letter of a word scores points according to it’s position in the alphabet: a = 1, b = 2, c = 3 etc. You need to re

0

Persistent Bugger

Instructions Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the number of times you must multiply the digits in num until yo

0

Dubstep

Instructions Polycarpus works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes

0

20181125

매일 일에 치여 살다보니 매일 공부하는 것도 쉽지가 않다. 알고리즘은 6kyu 문제를 푸는데 턱 막히더라… 무작정 풀기보다는 따로 공부를 해야하나 싶기도 하고 해야될 거는 많고 시간은 없고 이래저래 걱정이 크지만 하나하나 알아가면서 전부 내 것으로 만들거다. go hard

0

CamelCase Method

Instructions Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) for strings. All words must have their first letter capitalized without spaces. For inst

0

20181121

요즘 통계를 위해 SQL query를 직접 작성해야 되는데 복잡한 쿼리를 작업해보지 않아 어떻게 쿼리를 짜야할지, 또 데이터를 가져올 때 어떻게 나눠서 가져올지 감이 잘 오질않는다. 지하철로 집에 오는 길에 SQL도 codewars 같은 사이트가 있는지 검색해보았는데 w3resource 라는 사이트가 있었고 여기에 쿼리 연습문제들이 잔뜩 있었다. 당분간 이

0

Isograms

Instructions An isogram is a word that has no repeating letters, consecutive or non-consecutive. Implement a function that determines whether a string that contains only letters is an isogram. Assume

0

sed 사용 시 경로 변수에 espace 문자 적용하기

쉘 스크립트를 작성할 때 설정 파일 내부를 vim이나 다른 에디터로 일일히 수정하지 않고 sed를 통해 편하게 수정하곤한다. sed로 문자열을 치환하여 저장하는 방법은 아래와 같다. 12# []은 편의상 표기한 것으므로 실제로 쓰지 말 것sed -e 's/[oldWord]/[newWord]/g' [파일명] > [저장경로] 이때 경로를 바꿔야 하는 경