본문 바로가기

개발자11

[ 한걸음씩/지원하기 ] 우아한 스터디 ( Rust 스터디 그룹 ) 지원하기 2021년 11월 01일에 '우아한형제들' 로부터 홍보성 메일이 하나 왔습니다. 응? 우아한 스터디 !? 우아한 형제들에서 진행하는 우아한 테크코스, 우아한 테크캠프와 비슷한 형태의 교육 프로그램인가..? 한번 내용을 쭉 훑어봤는데 기존에 진행하던 교육들과는 다른 방식이었습니다 :) 진행기간은 21년 12월 ~ 22년 1월 로 약 2개월 동안 진행되는데 몇몇 스터디는 "우아한 스터디" 가 종료된 후 일정기간동안 추가적으로 진행한다고 하네요. 추가로 직장인들도 참여할 수 있게끔 스터디의 진행시간이 7시 ~ 9시로 설정되어 있는 것이 아주 마음에 들었습니다. ( 막상 회사를 다니고보니 퇴근 후의 시간에 참여 할 수 있는 활동들이 많이 제한되었던 기억이.. ) 총 5개의 스터디 그룹이 존재 했는데 저는 그중에.. 2021. 11. 8.
[CodeWars] javascript - 6kyu - Number Zoo Patrol 문제풀이 Title Number Zoo Patrol Description Background: You're working in a number zoo, and it seems that one of the numbers has gone missing! Zoo workers have no idea what number is missing, and are too incompetent to figure it out, so they're hiring you to do it for them. In case the zoo loses another number, they want your program to work regardless of how many numbers there are in total. Task: Write.. 2020. 5. 7.
[CodeWars] javascript - 6kyu - Difference of 2 문제풀이 Title Difference of 2 Description The objective is to return all pairs of integers from a given array of integers that have a difference of 2. The result array should be sorted in ascending order of values. Assume there are no duplicate integers in the array. The order of the integers in the input array should not matter. Examples [1, 2, 3, 4] should return [[1, 3], [2, 4]] [4, 1, 2, 3] should a.. 2020. 5. 6.
[CodeWars] javascript - 7kyu - Vowel Count 문제풀이 Title Vowel Count Description 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. How Can I Solved 문제 요구사항 정의 함수의 인자로 문자열이 주어진다. 문자열 중에서 모음의 갯수를 구해서 반환한다. 만약, 문자열에 모음이 없는 경우에는 0을 반환한다. 모음의 종류 a, e, o, u, i 문제 접근 문제를 푸는 방법에는 크게 2가지가 있다. split() 메서드로 문자열을 나누고, in.. 2020. 5. 1.