본문 바로가기

분류 전체보기378

네덜란드에서 개발자 이직 준비 1 (01.20 ~ 01.26) 2025.01.20 - 이직 준비 결정이력서 작성  여기에 있는 것들은 모두 Leetcode 문제들이다2025.01.20 - 코테 준비 1: Leetcode Easy 난이도부터 (HashMap Easy 위주)1. Ransom Note 2025.01.21 -  코테 준비 2: Map 난이도 Easy 위주로 풀면서 감 잡기1. Isomorphic Strings2. Word Pattern3. Valid Anagram4. Two Sum5. Contains Duplicate II6. Happy Number7. Valid Parantheses 2025.01.22 - 코테 준비 3: Array/String 난이도 Easy 위주로 풀면서 감 잡기1. Merge Sorted Array2. Remove Element3. .. 2025. 1. 27.
롤 내전 팀 짜기 프로그램 v1 목차인트로이 글은 롤 내전을 할 때 팀을 밸런스 있게 짜는 프로그램을 설명하기 위해 쓴다. 코드는 모두 Java로 작성되었고 이해가 안 되는 부분이나 수정할 부분, 또는 개선할 점이 있으면 댓글로 남겨주길 바란다. 우선 프로그램의 구성은 다음과 같다 (4시간 만에 만들었기 때문에 당연히 프로그램 구성은 개선할 점이 많을 것이므로 더 개선할 수 있는 부분은 꼭 댓글로 남겨주길 바란다): 프로그램 구성:Rank enumPosition enumPlayer classTeam classGame classMembers.csvMain classRank enum우선적으로 나중에 설명할 때 필요한 Rank enum부터 설명을 드리겠다. public enum RANK { IRON_4(1), IRON_3(2), IRO.. 2025. 1. 19.
코테 준비 3 2024.05.091. Arrays DSpublic static List reverseArray(List a) { List ret = new ArrayList(a.size()); for (int i = 0; i  2. 2D Arrays - DSpublic static int hourglassSum(List> arr) { int max = Integer.MIN_VALUE; for (int i = 0; i   2024.05.11이 날은 Stack 위주로 풀었다. 1. Hackerrank Maximum Elementclass Result { /* * Complete the 'getMax' function below. * * The f.. 2024. 5. 14.
Lecture 12-13: Objects 목차 Learning Objectives - Explain what an object is - Explain how objects are typed in Scala - Explain what the "self" is in object-oriented programming - Explain what delegation and late binding is in object-oriented programming - Desugar a language with simple objects into functions and mutation - Explain what the Expression Problem is, and how objected-oriented programming and functional progr.. 2024. 4. 10.
반응형