본문 바로가기

분류 전체보기

(426)
Basic C++ project setting process C++(Console, MFC, GUI) 프로젝트 기본 설정 (Console, MFC, GUI), visual studio, console wait Basic C++ project setting process C++(Console, MFC, GUI) 프로젝트 기본 설정 (Console, MFC, GUI), visual studio, console wait 맨날 프로젝트 열때마다 기본적으로 세팅하는데 항상 헷갈리고 까먹어서 그냥 적어둠** in x64 Process 0. Open empty project1. Make main class and main function.2. Check if you use Console or GUI(MFC) 2.1. Console only - Project -> properties -> Linker -> System -> SubSystem -> Console 2.2. Use GUI(MFC) - Project -> prop..
Vitamin K, 비타민 K usage/side effects/dosage 효능/부작용/성인,소아 용법 Vitamin K, 비타민 K usage/side effects/dosage 효능/부작용/성인,소아 용법 원문 ( 여기 )Origin ( Here ) Vitamin K 비타민 K Vitamin K plays a key role in helping the blood clot, preventing excessive bleeding. Unlike many other vitamins, vitamin K is not typically used as a dietary supplement. Vitamin K is actually a group of compounds. The most important of these compounds appears to be vitamin K1 and vitamin K2. Vitam..
LeetCode #461 HammingDistance. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 LeetCode #461 HammingDistance. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 바로 전에 bitset 을 새로 알게되었어서,,, 그래서 쉬웠다.. 100% 퍼포먼스 I learned bitset just right before this problem,,, so it was hella easy.. 100% performance 2019/02/24 - [Programming/C++] - How to use bitset, bitwise operator in c++, 비트셋, 비트..
Folic Acid 엽산 vitaminB9,비타민M usage/side effects/dosage 효과/효능/부작용/성인,소아 용법, 복용법 Folic Acid 엽산 vitaminB9,비타민M usage/side effects/dosage 효과/효능/부작용/성인,소아 용법, 복용법 원문 ( 여기 )Thesis ( Here) Folate (Folic Acid) 엽산 Folate, formerly known as folacin, is the generic term for both naturally occurring food folate and folic acid, the fully oxidized monoglutamate form of the vitamin that is used in dietary supplements and fortified foods. It is a B vitamin that's important for cell growth..
How to use bitset, bitwise operator in c++, 비트셋, 비트연산자 사용하는 방법, 이진수 변환 방법, How to convert decimal to binary, binary to decimal How to use bitset, bitwise operator in c++, 비트셋, 비트연산자 사용하는 방법, 이진수 변환 방법, How to convert decimal to binary, binary to decimal Java ( Here ) not yet bitset 초기화 방법 - 예제코드 확인 -> bitset testBit(십진수) Initialize bitset - check sample code -> bitset testBit(decimal number) bitset 에서 정수로 변환 -> (int)(testBit.to_ulong()) bitset to integer -> (int)(testBit.to_ulong()) bitset 그대로 출력할 경우, 정해둔 bit 사이즈의 이진수로 ..
LeetCode #476 NumberComplement. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 LeetCode #476 NumberComplement. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 방법은 어렵지 않았는데, 32bit binary 사용해야 되는데 char, byte, int 등 앞에 0으로 채워진 원하는 사이즈의 binary 수를 어떻게 쓰는지 몰라서 한참 걸림.. 결과는 bitset 을 사용하면 쉽게 가능하다. 퍼포먼스 최고 It's not that hard, but i didn't know how to make binarySet with size i want, so to..
LeetCode #429 N-aryTreeLevelOrderTraversal. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 LeetCode #429 N-aryTreeLevelOrderTraversal. Algorithm,알고리즘,LeetCode,Codefights,CodeSignal,코드파이트,코드시그널,예제,문제해결능력,example,c++,java,재귀,recursive,datastructure,techinterview,coding,코딩인터뷰,기술면접 문제풀이 설계가 헷갈려서 좀 걸리고 코딩은 금방 끝냄, input 이 null 인 케이스에서 런타임 에러나는걸 다른건줄 알고 삽질 잠깐함 성능은 중간정도 가고, 메모리는 좋지않음. 트리구조랑 재귀 간만에 해서 재밌었음 Spent a lil time to get how to solve, but did coding in a short time. A case input null,..
Comparing Java and Kotlin with pros and cons, 자바와 코틀린 장단점 비교 Comparing Java and Kotlin with pros and cons, 자바와 코틀린 장단점 비교 Origin ( Here )원문 ( 여기 ) What is Better Java or Kotlin 자바와 코틀린 중에 뭐가 더 나은가? Beginners, Intermediates, or the experts all of them are in the same dilemma Java or the Kotlin? You have two colleges to enroll yourself, how would you pick one? You will weigh the advantages of both of them, also pick out the disadvantages of both, look forwa..