쟌's Blog

· Algorithm/Go
https://leetcode.com/problems/maximum-subarray/submissions/ Maximum Subarray - LeetCode 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 package main // https://leetcode.com/problems/maximum-subarray/ func main() { // nums := []int{-2,1,-3,4,-1,2,1,-5,4} nums := []int{5, 4, -1, 7, 8} // nums..
2022년 시작한지 10일정도 지났지만.. 아직 1월 이니까 2022년 목표를 세워 볼까? 1. 운동 회사 다니기 전, 그러니까 코로나 터지기 전 헬스장을 일주일에 4번 정도는 계속 다녔던 것 같다. 코로나 터지고 나서 헬스장도 잠정 폐쇄 될 때가 있고, 마스크 필 착용, 샤워 불가 이렇게 되어 버리니까 안가게 되더라. 그렇다고 운동을 아예 하지 않은건 아니고 자전거를 한달에 2번 정도 한번 탈 때 많이 타면 100키로도 타고 했었는데 운동량이 정말~ 많이 줄었고.. 그에 따라 근육량도 줄어들고 체지방은 늘어났다. 지금 생각해보면.. 오히려 운동을 했을 때.. 머리 회전이 더 빨랐던 느낌.. 운동 꼭 해야한다! 무조건 시작 할 건데.. 전문적으로 무엇을 배워볼까.. 아니면 헬스장을 다시 갈까 고민중이다...
· Algorithm/Go
https://leetcode.com/problems/longest-common-prefix/ Longest Common Prefix - LeetCode 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 package main package main // https://leetcode.com/problems/longest-common-prefix/ import ( "strings" ) func main() { // strs := []string{"flower", "flow", "f..
iTerm 을 사용중이기 때문에 iTerm 열어서 # python --version limjian@Jians-MacBook-Pro-13 ~ % python --version Python 2.7.18 mac 기본적으로 python 2.X 가 설치되어있다. Python Releases for macOS The official home of the Python Programming Language www.python.org python3 을 다운받고.. # python3 --version limjian@Jians-MacBook-Pro-13 ~ % python3 --version Python 3.10.1 limjian@Jians-MacBook-Pro-13 ~ % Mac 자체에서 python 2.X 를 사용하는 ..
벌써 2022년 1월 9일 이지만 2021년 회고를 한번 해보려고 한다. 하나하나 자세히 기억 할 수는 없으니까.. 기억에 남았던 중요 이슈, 월 별로 정리 1월, 2월 정말 걱정이 많았던 1, 2월 메신저(업무)를 보던 사람 둘이 이직을 했다. 한명은 20년 12월, 다른 한명은 21년 2월에.. 그래서 같은 업무를 보는 사람이 팀장 다음 본인(1년차), 20년 10월 새로 들어온 신입 이렇게.. 지금도 많이 부족하지만 1년밖에 되지 않아서 정말 모르는게 많았는데.. 그래서 심리적으로는 힘든 시기였던것 같다. 이 시기에 내가 맡았던 업무 중 기억에 남는 것은.. 코로나 바이러스 때문에 재택근무를 많이 한다고 줌(zoom)을 메신저에 연동하는 업무를 맡았다. Introduction - API Refere..
· Algorithm/Go
https://leetcode.com/problems/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters - LeetCode 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 Go 언어에서는 유니코드(UTF-8)를 표현할 때 rune 을 사용하는데 자꾸 string 화 시키려는 버릇이 있다 익숙하지가 않아서.. rune 좀 봐야될듯.. package main fun..
· Algorithm/Go
https://leetcode.com/problems/minimum-index-sum-of-two-lists/submissions/ Minimum Index Sum of Two Lists - LeetCode 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 Golang~ map 유용하게 사용되니까 진짜러 익숙하게.. 그리고 map for loop 순서 보장 안되는거~ 알고 있었지만 한번 더 체크 package main func main() { // list1 := []string{..
· Algorithm/Go
https://leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted Lists - LeetCode 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 연결리스트 (linked list) 문제를 처음 접해봐서 discuss 참고함 배열과의 차이점을 꼭 알아두고, 언제 활용해야될지 생각해야될듯.. package main type ListNode struct { Val int Next *ListNode } func main() {..
임쟌
'분류 전체보기' 카테고리의 글 목록 (15 Page)