Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
orange
javascript
Wiki
Home
Home
· Changes
Page history
orange created page: coding
authored
Jun 10, 2016
by
orange
Hide whitespace changes
Inline
Side-by-side
home.md
View page @
1abd0395
...
...
@@ -6,7 +6,7 @@
## **문제 1)**
-
숫자
`n`
을 인수로 받아 1 ~ n 까지의 합계를 반환하는 함수를 작성하세요.
-
(※ 반복문 -> 가우스 -> 홀짝수 -> 재귀 순으로 확장 가능)
-
https://codepad.remoteinterview.io/KindlyAppreciatedTahitiStuart
```
js
console
.
log
(
"
sum :
"
+
sum
(
10
));
...
...