일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Python challenge
- 알고리즘
- 데이터베이스
- 운영체제
- 파이썬
- C
- 러스트
- 자바
- Python
- 파이썬 챌린지
- 오라클
- 백준 러스트
- Database
- ubuntu
- Operating System
- 오라클DB
- 자바 개념
- 우분투
- 자바 기초
- 백준
- 러스트 예제
- Rust
- 파이썬 알고리즘
- Reversing
- 데이터 통신
- data communication
- OS
- 파이썬 첼린지
- 러스트 프로그래밍 공식 가이드
- java
Archives
- Today
- Total
목록백준 문자열 단계 (1)
IT’s Portfolio
[Algorithm] Baekjoon - 문자열 단계
💻 Baekjoon String Stage Character & String Question_Link - 27866 Basic Code use std::io::{self, Read}; fn main() { let mut buf = String::new(); io::stdin().read_to_string(&mut buf).unwrap(); let mut iter = buf.lines(); let s = String::from(iter.next().unwrap()); let i = iter.next().unwrap().parse::().unwrap(); println!("{}", &s[i-1..i]); } Measure Word Length Question_Link - 2743 Basic Code use ..
Development Study/Rust
2023. 7. 31. 18:45