Skip to content

Commit a771aa9

Browse files
authored
Merge pull request #573 from egg-silver/main
77회차 폴더 생성
2 parents 3557c42 + 9f77e55 commit a771aa9

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed

live7/test75/문제1/input.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2 7
2+
4 2 4
3+
2 4 4

live7/test75/문제1/이지은.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const input = require('fs')
2+
.readFileSync(process.platform === 'linux' ? '/dev/stdin' : './input.txt')
3+
.toString()
4+
.trim();
5+
6+
function solution(input) {}

live7/test75/문제3/이지은.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function solution(word) {
2+
var answer = 0;
3+
return answer;
4+
}
5+
6+
7+
console.log(solution('AAAAE'));
8+
console.log(solution('AAAE'));
9+
console.log(solution('I'));
10+
console.log(solution('EIO'));

live7/test77/문제1/.gitkeep

Whitespace-only changes.

live7/test77/문제2/.gitkeep

Whitespace-only changes.

live7/test77/문제3/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)