This repository contains my solutions and approaches for practicing data structures and algorithms using Java, as well as for solving problems on LeetCode.
- To practice various data structures and algorithms using Java.
- To solve problems on LeetCode and document both my solutions and the problem codes for testing my solutions.
- To utilize this repository as a personal codebook for future reference.
- Folders are organized based on the difficulty levels of LeetCode problems, and each problem's name is used for Java class files. The data structures and algorithms used are documented in the Update Summary.
- For any questions or suggestions, please contact jindokim.kor@gmail.com.
Update Summary
2024-02-10: Solution code for the middle-level LeetCode problem "Add Two Numbers" has been added, along with testable code for the solution. The applied data structure is Linked List, and the used algorithm is the Traversing Algorithm. Related files: src/com/middleLevel/AddTwoNumbers.java src/com/middleLevel/ListNode.java leetcode Add Two Numbers problem link