[제코베ICT특강 후기]정규표현식 Python으로 톺아보기

[제코베ICT특강 후기]정규표현식 Python으로 톺아보기

특강 소개 및 후기

톺아보기란 샅샅이 더듬어 뒤지면서 찾아본다는 순 우리말이다.
파이썬을 잘 알지는 못하지만 정규표현식을 배우고싶은 마음에 듣게 된 특강이다. 파이썬을 잘 몰라도 충분히 들을 수 있는 강의였다!

사실 정규식에 대한 자료는 인터넷에 참 많다.
하지만 개발자로서 공부할 게 많다보니 정규식은 사용에 의해… 꼭 필요한 때만 급하게 공부하게 되어버린다.
언젠가 공부해야지라고 생각만했었는데 이호준대표님의 특강덕분에 정규식에 한 발 가까워졌다.
물론 자유자재로 사용하려면 한참 멀었지만 기초를 다질 수 있어 참 유익했다.

Read More

[웨비나후기]3월 우아한테크세미나 : 우아한 ATDD

웨비나 소개 및 후기

테스트의 중요성은 익히 알고 있지만 코드를 짜기 급급한 나는 테스트 주도 개발을 해본 적이 없다.
이번 웨비나를 통해 간접적으로나마 우아한형제들에서는 어떻게 ATDD를 하는지 알 수 있어서 유익했다.
또 인수 테스트와 단위테스트에 대한 비교를 실제 사례로 들어볼 수 있어서 이해가 쏙쏙 되었다.
너무 재밌다! 토이프로젝트에 꼭 넣어보고싶다!

Read More

[오류일지]Error creating bean with name 에러 해결 PropertySourcesPlaceholderConfigurer

문제 : PropertySourcesPlaceholderConfigurer

svn에서 import한 프로젝트를 셋팅하는 과정에서 톰캣을 실행하니 아래와 같은 오류가 발생했다.

Error creating bean with name ‘org.springframework.context.support.PropertySourcesPlaceholderConfigurer#0’: Cannot resolve reference to bean ‘properties’ while setting bean property ‘properties’; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named ‘properties’ available at

Read More

[자바JAVA] Maximum Perimeter Triangle 해커랭크

문제 : Maximum Perimeter Triangle

a non-degenerate triangle이 되는 가장 긴 둘레를 구하는 문제이다.
a non-degenerate triangle란 무엇일까? 구글링해보니 아래 3가지 조건을 충족하는 삼각형이라고 한다. 한국어로 부르는 명칭은 찾을 수 없었다. 분명 있을텐데…

  1. a+b>c
  2. a+c>b
  3. b+c>a

Given an array of stick lengths, use 3 of them to construct a non-degenerate triangle with the maximum possible perimeter.
Return an array of the lengths of its sides as 3 integers in non-decreasing order.

Read More

[자바JAVA]Luck Balance 해커랭크

문제 : Luck Balance

contests에서 각 대회가 중요하면 1이고 중요하지 않으면 0이다.
k는 중요한 대회에서 질 수 있는 횟수이다.
contests에서 지면 행운이 높아지고 이기면 행운이 낮아진다.
최대 행운이 얼마인지 구하는 문제이다.
Lena is preparing for an important coding competition that is preceded by a number of sequential preliminary contests. Initially, her luck balance is 0. She believes in “saving luck”, and wants to check her theory. Each contest is described by two integers, L[i] and T[i]:

Read More

[자바JAVA]Grid Challenge 해커랭크

문제: Grid Challenge

주어진 그리드의 열이 사전순 정렬이면 YES를 출력하는 문제로 그리드의 행은 순서를 변경할 수 있다.
Given a square grid of characters in the range ascii[a-z], rearrange elements of each row alphabetically, ascending. Determine if the columns are also in ascending alphabetical order, top to bottom. Return YES if they are or NO if they are not.

Read More