# String

[JavaScript] Array를 String 혹은 Object 로 변환하기
배열을 문자열 혹은 객체로 바꾸기, 문자열 혹은 객체를 배열로 바꾸기(feat. JSON.stringify, JSON.parse)
[백준] #2002: 추월
https://www.acmicpc.net/problem/2002n: number of cars passing through tunnel.dae: car number list written by 대식.carToIndexMap: a map data structu
[백준] #4889: 안정적인 문자열
https://www.acmicpc.net/problem/4889If the parenthsis is eqaul to '{', just add to stack.If the parenthisis is equal to '}', check weather stack
[Swift] 문자열 다루기
정규식을 이용할 수 있다.https://developer.apple.com/documentation/swift/stringhttps://developer.apple.com/documentation/foundation/nsstring/1415462-tr

[Leetcode]187. Repeated DNA Sequences
The DNA sequence is composed of a series of nucleotides abbreviated as 'A', 'C', 'G', and 'T'.For example, "ACGAATTCCG" is a DNA sequence.When studyin
[백준] #5525: IOIOI
https://www.acmicpc.net/problem/5525s: input string that is only consisted of 'I' and 'O'n: number of 'O'm: length of sstart: every index of 'I'c
[Kotlin] String, 문자열
$+변수명: 문자열과 변수를 합칠 때, + 연산자 대신 하나의 문자열 안에 $+변수명를 붙여 표시한다.ex) print(”문자열”+$a)${변수명.함수}: 만약 String 변수의 함수를 사용하고 싶을 때는 ${변수명.함수}로 하나의 구문으로 인식하게 표현한다.ex)
[Java] 문자열 비교 (==, equals)와 intern
문자열을 == 연산자로 비교할 때, 분명 문자열은 같은데 false가 나오는 경우가 있다. 그런데 equal() 메소드를 사용하면 true가 나온다. 대체 == 연산자와 equal 메소드는 무슨 차이가 있을까?String 생성하는 것에 literal을 이용하는 것(St

[Leetcode] 763. Partition Labels
You are given a string s. We want to partition the string into as many parts as possible so that each letter appears in at most one part.Note that the

[Leetcode] 290. Word Pattern
Given a pattern and a string s, find if s follows the same pattern.Here follow means a full match, such that there is a bijection between a letter in
Leetcode - String 문제 (2)
Easy문제들, 푸는 대로 상단에 업데이트이 프로그래밍 언어는 한개의 변수에대한 4개의 연산자만 지원하는 언어다. 프로그램이 주어질때 결과값을 계산하라.간단한 프로그래밍 언어라는게 재미있긴한데, 좋은 문제같지는 않음.
BOJ - 2941 - 크로아티아 알파벳
1316번: 그룹 단어 체커문제그룹 단어란 단어에 존재하는 모든 문자에 대해서, 각 문자가 연속해서 나타나는 경우만을 말한다. 예를 들면, ccazzzzbb는 c, a, z, b가 모두 연속해서 나타나고, kin도 k, i, n이 연속해서 나타나기 때문에 그룹 단어이지