분류 전체보기
-
개발자 면접 유형, 6가지 면접 유형 정리기타 2023. 10. 13. 06:37
개발자 면접에 대한 6가지 유형을 살펴 보겠습니다. 제가 작성한 글은 아니구요, 원본은 아래 링크 이구요, 해당 내용에 저의 뇌피셜을 포함해서 작성한 글입니다. https://careerly.co.kr/comments/66132 1. 온라인 코딩 테스트 이메일로 문제를 주기도 하지만, 요즘은 특정 웹사이트에 로그인해서 문제를 풀게 됩니다. 크게 2가지 유형으로 테스트가 치뤄 지는 대요. 1~2시간 2~3문제 3~4시간 4~5문제 쉬운문제와 어려운 문제에 대한 시간 배분을 15~30분, 45분~1시간 정도로 놓고 문제 푸시면 적절한 시간 배분입니다. 가능하면 쉬운 문제는 빨리 푸는게, 시간을 버는 요령입니다. 2, 라이브 코딩 테스트 인터뷰어와 함께 보통 1:1로 진행되구요, 카메라가 켜진상태의 CC(co..
-
leetcode com 125 Valid PalindromeLeetcode.com 2023. 10. 12. 08:39
문제 링크: https://bit.ly/3rMr6l8 Valid Palindrome - LeetCode Can you solve this real interview question? Valid Palindrome - A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric cha leetcode.com https://youtu.be/vfebH2GbEdA?si=M5D1122XDaZDhcs5 파이썬 소스: https://bit.l..
-
leetcode.com 4. Median of Two Sorted ArraysLeetcode.com 2023. 10. 7. 15:28
https://leetcode.com/problems/median-of-two-sorted-arrays/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com https://youtu.be/Ye_639SfzJE?si=7f4eb_HNOzV283wi - YouTube www.youtube.com 파이썬 소스: https://bit.ly/3RPxmDv
-
leetcode.com 33. Search in Rotated Sorted ArrayLeetcode.com 2023. 10. 7. 06:27
leetcode.com 33. Search in Rotated Sorted Array https://leetcode.com/problems/search-in-rotated-sorted-array/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com https://youtu.be/hAOMTq6XQj4?si=dZIIG6-f_LjiKGLL 파이썬 소스: https://..
-
leetcode com 416 Partition Equal Subset SumLeetcode.com 2023. 8. 8. 07:32
https://youtu.be/nLHNyrM-3VM 파이썬 소스: https://bit.ly/3Qw5C6a 문제 링크: https://leetcode.com/problems/partition-equal-subset-sum/ Partition Equal Subset Sum - LeetCode Can you solve this real interview question? Partition Equal Subset Sum - Given an integer array nums, return true if you can partition the array into two subsets such that the sum of the elements in both subsets is equal or false other..
-
BOJ 2234번 성곽백준 2023. 7. 5. 07:27
유튜브 문제 풀이: https://youtu.be/MffbKhMOLX8 파이썬 소스: https://bit.ly/3JLE9sN GitHub - skysign/WSAPT: 알고리즘 문제 풀이 알고리즘 문제 풀이. Contribute to skysign/WSAPT development by creating an account on GitHub. github.com 문제 링크: https://www.acmicpc.net/problem/2234 2234번: 성곽 첫째 줄에 두 정수 N, M이 주어진다. 다음 M개의 줄에는 N개의 정수로 벽에 대한 정보가 주어진다. 벽에 대한 정보는 한 정수로 주어지는데, 서쪽에 벽이 있을 때는 1을, 북쪽에 벽이 있을 때는 2를, www.acmicpc.net