Skip to content

Commit

Permalink
[Silver V] Title: 크로아티아 알파벳, Time: 124 ms, Memory: 9360 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
quokka-eating-carrots committed Mar 21, 2023
1 parent e3017d1 commit e6e49fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Expand Up @@ -4,7 +4,7 @@

### 성능 요약

메모리: 9352 KB, 시간: 128 ms
메모리: 9360 KB, 시간: 124 ms

### 분류

Expand Down
@@ -1,9 +1,5 @@
var fs = require("fs");
const filePath = process.platform === "linux" ? "/dev/stdin" : "test.txt";
let input = fs.readFileSync(filePath).toString().trim();
const croatia = ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="];
let cnt = 0;
for (let s of croatia) {
input = input.split(s).join("Z");
}
input = input.replace(/(c\=|c\-|dz\=|d\-|lj|nj|s\=|z\=)/g, "Z");
console.log(input.length);

0 comments on commit e6e49fe

Please sign in to comment.