본문 바로가기

카테고리 없음

2020-11-18 12시 개발자 글 모음 | " LeetCode : 283. Mov" 외 2개 이야기

오늘의 질문 2020.11.17 (애기아빠의 신입 구직) by 이동욱

  • Java & Spring(Boot) 기반의 포트폴리오를 만들어 대전의 Java 기반 회사를 노리는 것 (Java 기반 회사가 적음) python이나 php 등을 준비해서 우선 대전에서 취업확률을 높여 취업을 먼저하고 별도로 Java & Spring을 공부할 것
  • 서비스 회사를 오실려면 어떻게든 경기도의 끝자락 (서울인근이 아닌 왕복 통근 4시간 감수할 수 있는 거리) 에라도 있어야 하기 때문입니다
  • 말씀하신걸로 보아 현재는 개발 지식이 거의 없으신 상태시라면 어떻게든 궁금한 것에 대한 답변을 받을 수 있는 오프라인 교육으로 가셔야 합니다


LeetCode : 108. Convert Sorted Array to Binary Search Tree by 신기용

  • Given an array where elements are sorted in ascending order
  • convert it to a height balanced BST
  • a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1


LeetCode : 283. Move Zeroes by 신기용

  • Given an array nums
  • write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements