본문 바로가기
728x90
Jira 기본 개념 - Agile 기법 Jira로 프로젝트 에자일 관리를 시작하려고 하는데, 개념들이 헷갈려서 정리해보았다! 테마(Thema) > 에픽(Epic) > 스토리(Story) > 작업(Task) 크게 이렇게 4가지의 명칭이 있다. 테마 (Thema) 에픽들의 모임 = 테마(Thema) ex) 자동차 관리 서비스 에픽 (Epic) 에픽 = 스토리들의 모임 = 큰 스토리 여러 스프린트에 걸쳐서 진행될 수 있다. ex) 자동차에서 정보를 가져와 사용자에게 제공할 수 있다 스토리 (Story) 스토리 = "어떤 사용자가, 어떤 목적을 위해, 어떤 행동을 할 수 있다"라는 일의 단위 = 작업들의 모임 ex) 사용자가 엔진 정보를 확인할 수 있다. 작업 (Task) 일의 최소 단위 개발 : 기능적 요구사항 버그 : 테스트 중 나온 버그 작업 .. 2022. 1. 10.
Mac에서 Arduino VSCode 개발환경 세팅 아두이노를 개발할 때 Arduino IDE를 쓸 수 있지만, 간단한 테스트가 아닌 프로젝트를 개발하기는 힘들다고 느꼈다. 그래서 vscode로 아두이노 프로젝트를 개발하기로 결정! vscode에서 개발해서 바로 아두이노로 업로드할 수 있도록 여러 extension를 설치해줘야 된다 왼쪽 5번째 버튼을 클릭하면 extension 마켓으로 들어갈 수 있다 아두이노는 cpp를 쓰기에 C/C++ extension를 설치해준다 빌드와 실행을 간단하게 실행하게 해주는 Code runner 설치해준다 VSCode에서 Arduino 프로젝트를 생성, 빌드하게 해주는 PlatformIO IDE를 설치해준다 설치를 완료하고 나면, 왼쪽 밑에 PlatformIO로 들어가는 버튼이 생긴다 프로젝트를 만들기 위해 Platfor.. 2022. 1. 9.
leetcode 1041) Robot Bounded In Circle LV. Medium 🧐 https://leetcode.com/problems/robot-bounded-in-circle/description/ Robot Bounded In Circle - 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 문제 On an infinite plane, a robot initially stands at (0, 0) and faces north. The robot can receive one of three instructions: "G.. 2022. 1. 9.
leecode 1463) Cherry Pickup II LV. Hard 🥵 https://leetcode.com/problems/cherry-pickup-ii/ Cherry Pickup II - 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 문제 You are given a rows x cols matrix grid representing a field of cherries where grid[i][j] represents the number of cherries that you can collect from the.. 2022. 1. 8.
leetcode 382) Linked List Random Node LV. Medium 🧐 https://leetcode.com/problems/linked-list-random-node/ Linked List Random Node - 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 문제 Given a singly linked list, return a random node's value from the linked list. Each node must have the same probability of being chosen. .. 2022. 1. 8.
cpp 난수 생성 (random number generation) : PRNG 컴퓨터는 일반적으로 난수를 생성할 수 없음!! 그래서 의사 난수 생성기를 통해 난수 생성 코드를 짜 보자👊 의사 난수 생성기(pseudo-random number generator: PRNG) 시드(seed)라고 하는 시작 번호를 가지고 시드와 전혀 다른 번호로 변환하기 위해 수학 연산을 수행하는 프로그램 곱하기와 더하기 같은 수학 연산을 통해 오버플로우를 발생시켜 난수를 만든다! // 벡터의 인덱스의 값을 난수로 받을것이기에 unsigned int 사용! unsigned int PRNG(unsigned int range) { // 처음 시드는 큰 수(오버플로우가 날 수 있도록)로 임의로 지정 // static으로 seed를 두어 계산되어있는 시드를 재사용할 수 있도록 함 -> 난수가 동일하게 나오는 것.. 2022. 1. 8.
leetcode 143) Reorder List LV. Medium 🧐 https://leetcode.com/problems/reorder-list/ Reorder List - 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 문제 You are given the head of a singly linked-list. The list can be represented as: L0 → L1 → … → Ln - 1 → Ln Reorder the list to be on the following form: L0 → Ln.. 2022. 1. 6.
leetcode 231) Power of Two LV. Easy 😎 https://leetcode.com/problems/power-of-two/ Power of Two - 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 문제 Given an integer n, return true if it is a power of two. Otherwise, return false. An integer n is a power of two, if there exists an integer x such that n == 2x... 2022. 1. 5.
leetcode 416) Partition Equal Subset Sum LV. Medium 🧐 https://leetcode.com/problems/partition-equal-subset-sum/ Partition Equal Subset Sum - 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 문제 Given a non-empty array nums containing only positive integers, find if the array can be partitioned into two subsets such that the.. 2022. 1. 4.
leetcode 221) Maximal Square LV. Medium 🧐 https://leetcode.com/problems/maximal-square/ Maximal Square - 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 문제 Given an m x n binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example 1: Input: matrix = [["1","0".. 2022. 1. 4.
728x90