SVN사용법과 git차이점
형상관리 도구의 종류
- Client/Server 타입 : Subversion(SVN), CVS, Perforce, ClearCase, TFS
- 분산저장소 타입 : Git, Mercurial, Bitkeeper, SVK, Darcs
- Folder 공유 타입 : RCS, SCCS
2개의 문자(ASCII CODE)를 입력받아서 순서를 바꿔 출력해보자.
참고
char x, y;
scanf(“%c %c”, &x, &y);
printf(“%c %c”, y, x); //출력되는 순서를 작성와 같은 방법으로 해결할 수 있다.
이 좋은 잡페어를 왜 많은 예비 개발자들이 안 듣는 걸까? 정말 귀중한 시간이었다.
특히 다른 사람의 포트폴리오를 볼 수 있는 경험이 신입 개발자로선 쉽지않은데 포트폴리오를 페이스북과 아마존다니는 개발자분들이 리뷰와 첨삭까지 해주신다. 정말 많이 배울 수 있었다.
공통으로 가장 긴 접두사를 찾는 문제이다.
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string “”.
strs[i] consists of only lower-case English letters.