250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩테스트
- 알고리즘 문제
- englishbook
- 코테 준비
- 코테
- 프로그래머스
- 쉬운 알고리즘 문제
- STUDYENGLISH
- 원서
- MySQL
- 원서읽자
- dfs
- 원서읽기
- 알고리즘
- BFS
- 삼성
- SQL
- sw expert
- 완전탐색
- readingbook
- 직무면접
- nightroutine
- the midnight library
- 백준
- sw expert academy
- D4
- swexpertacademy
- PyQt
- English
- 코테 대비
Archives
- Today
- Total
시나브로
[프로그래머스] 2 x n 타일링 본문
728x90
이 문제는 규칙을 찾는게 중요하다.
#include <string>
#include <vector>
using namespace std;
vector <int > list;
int signal = 1;
int solution(int n) {
int answer = 0;
if (signal == 1) {
list.push_back(1);
list.push_back(1);
}
int point = list.size();
while (point <= n) {
list.push_back((list[point - 1]+list[point-2])% 1000000007);
point++;
}
answer = list[n];
return answer;
}
https://programmers.co.kr/learn/courses/30/lessons/12900
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[2019 카카오 개발자 겨울 인턴십] 크레인 인형뽑기 게임 (0) | 2020.05.08 |
---|---|
[프로그래머스] 네트워크 (0) | 2020.04.26 |
[ 프로그래머스 ] 스킬트리 (0) | 2020.04.04 |
[ 프로그래머스 ] 멀쩡한 사각형 (0) | 2020.04.04 |
[ 프로그래머스 ] 124 나라의 숫자 (0) | 2020.04.04 |