일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- almostIncreasingSequence
- Python
- adjacentElementsProduct
- data_structure
- 피보나치 수
- 2750
- Sequential Search
- 백준
- Daily Commit
- flask
- til
- codesingal
- 파이썬 포렌식
- Numpy
- shapeArea
- 10953
- baekjun
- 수 정렬하기
- recursion
- matrixElementsSum
- collections.deque
- All Longest Strings
- centuryFromYear
- codesignal
- 2015 봄학기 알고리즘
- cpp
- markdown
- Counting cells in a blob
- 파이썬머신러닝완벽가이드
- C++
Archives
- Today
- Total
Introfor
[Intro] shapeArea 본문
Below we will define an n-interesting polygon. Your task is to find the area of a polygon for a given n.
A 1-interesting polygon is just a square with a side of length 1. An n-interesting polygon is obtained by taking the n - 1-interesting polygon and appending 1-interesting polygons to its rim, side by side. You can see the 1-, 2-, 3- and 4-interesting polygons in the picture below.
그림에서 보면 알 수 있듯이 n이 주어졌을 때, 모양의 개수를 반환하는 문제이다.
import sys
sys.setrecursionlimit(15000)
def shapeArea(n):
if n==0:
return 1
else:
return 4*(n-1)+shapeArea(n-1)
3년 전에도 이와 비슷한 문제를 풀었던 기억이 어렴풋이 나는데, 어떻게 풀었는지 기억이 나질 않아서 재귀함수를 통해 수열을 적용해 연산해서 풀었다.
def shapeArea(n):
return n**2 + (n-1)**2
위 코드는 다른사람이 푼 코드다. 이제 뭐가 부족한지 알겠는가.
'Programming_prob > Codesignal' 카테고리의 다른 글
[Intro] almostIncreasingSequence (0) | 2020.07.18 |
---|---|
[Intro] Make Array Consecutive 2 (0) | 2020.07.18 |
[Intro] adjacentElementsProduct (0) | 2020.07.18 |
[Intro] checkPalindrome (0) | 2020.07.18 |
[Intro] centuryFromYear (0) | 2020.07.18 |
Comments