아무거나적어~
-
에타 과목코드로 시간 및 강의실 조회 부분 자동화아무거나적어~ 2023. 3. 6. 01:36
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 const array = ['PHY1001', 'GED6001']; async function processArray() { for (const item of array) { $("#subjects > div.filter > a:nth-child(4)").trigger("click"); $("#subjectKeywordFilter > div > label:nth-child(3) > input[type=radio]").trigger("click"); document.querySelector("#subjectKeywordFilter > div > input").value = item $("#subjectKeywordFilter > input")..
-
[c++] complex class아무거나적어~ 2023. 2. 3. 09:24
Complex numbers in C++ | Set 1 - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org
-
[c++] lambda function and custom compare function아무거나적어~ 2023. 2. 2. 14:19
모든 stl은 (작은 거) < (큰 거) 가 되게 비교함수를 작성하면 됨 (a가 왼쪽에 있고, b가 오른쪽에 있어. 이거 맞아? 에 관한 답을 return하게 코딩하면 됨) 예외적으로 priority_queue 는 가장 큰 게 top에 오게 구현되어 있기 때문에 비교함수를 반대로 적어줘야함 [C++] 람다 표현식, lambda에 대해서 안녕하세요. BlockDMask입니다. 오늘은 C++11, 14에서 추가된 lambda 표현식에 대해 알아보겠습니다. 1. 람다 표현식 2. 람다 표현식 사용 방법과 구조 3. 람다의 필요성, 사용 예제 1. C++ 람다 표현식 lambda blockdmask.tistory.com Theme 03. STL 알고리즘 _ sort [개념] (목차 : https://blog.n..
-
C++ class vs Structure아무거나적어~ 2023. 2. 2. 10:33
둘이 굉장히 유사함. 차이점은 Class 는 기본적으로 private, Structure 는 기본적으로 public. Class 는 상속을 염두에 두고 사용하는 것이고 Structure 는 여러 데이터를 모아서 쓰기 위해 사용하는 것이다 Structure vs class in C++ - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksfo..
-
[visual studio] setting아무거나적어~ 2023. 1. 11. 01:17
글꼴 https://fonts.google.com/specimen/JetBrains+Mono Google Fonts: JetBrains Mono JetBrains Mono is a typeface made for the specific needs of developers. Find more informations about font features, design and language support on www.jetbrains fonts.google.com 글씨 크기 16 테마 https://marketplace.visualstudio.com/items?itemName=FINNSEEFLY.Darcula-Theme-For-Visual-Studio Darcula Theme - Visual Studio Ma..