일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 손에 익히며 배우는 네트워크 첫걸음
- javascript
- 프로그래머스
- 타임어택
- codestates
- 리덕스
- SQL 고득점 Kit
- 백준
- 제로초
- 토익
- js
- LeetCode
- Async
- 타입스크립트 올인원
- 정재남
- til
- 파이썬
- python
- 타입스크립트
- 4주 프로젝트
- 회고
- 2주 프로젝트
- 자바스크립트
- 렛츠기릿 자바스크립트
- 리트코드
- 리액트
- 코어 자바스크립트
- programmers
- 코드스테이츠
- 알고리즘
- Today
- Total
목록Problem Solving (205)
Jerry
In this challenge, you are required to calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large. Constraints 1
Given an array of integers, find the sum of its elements.For example, if the array , , ar = [1, 2, 3], 1 +2 + 3 = 6, so return 6. Alice and Bob each created one problem for HackerRank. A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories: problem clarity, originality, and difficulty. The rating for Alice's challenge is the triplet a = (a[0], a[1], a[..
Given an array of integers, find the sum of its elements. For example, if the array , , ar = [1, 2, 3], 1 +2 + 3 = 6, so return 6. Constraints 0 < n, ar[i]
* 필요한 문장으로 판단되는 경우에 발췌했으며, 출처 표기를 준수하였습니다. * 본 글은 개인 노션에서 만들어 티스토리에서 재구성했습니다. (노션 접속은 본 줄의 문장을 클릭) Linked List(링크드 리스트) 링크드 리스트는 IPL(Information Processing Language)를 주로 다룬 RAND 회사의 Allen Newll, Cliff Shaw and Herbert A. Simon에 의해 발달되었다. 링크드리스트는 lists, stacks, queues, associative arrays, S-expressions 같은 데이터 구조에 흔히 사용되며, 종류로 Singly Linked List, Doubly Linked List, Circular Linked List, Doubly Ci..
* 필요한 문장으로 판단되는 경우에 발췌했으며, 출처 표기를 준수하였습니다. ** 본 글은 개인 노션에서 가져왔습니다. 1. Stack In computer science, a stack is an abstract data type that serves as a collection of elements, with two main pricipal operation(push, pop) abstract data type is a mathematical model for data types. An abstract data type is defined by its behavior (semantics) from the point of view of a user, of the data, specifically in ..