일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클DB
- Database
- 오라클
- 러스트 프로그래밍 공식 가이드
- 파이썬 알고리즘
- Python challenge
- 자바 개념
- 알고리즘
- 러스트
- 데이터 통신
- Python
- 데이터베이스
- 자바
- 파이썬
- Reversing
- 러스트 예제
- 백준 러스트
- 우분투
- data communication
- 백준
- 파이썬 챌린지
- C
- Operating System
- Rust
- 자바 기초
- 운영체제
- java
- 파이썬 첼린지
- OS
- ubuntu
- Today
- Total
목록Baekjoon (4)
IT’s Portfolio
💻 Baekjoon Two Dimensional Array Stage Matrix Sum Question_Link - 2738 Basic Code use std::io::{self, *}; fn make_matrix(n: u32, m: &str) -> (Vec, Vec) { let mut v: Vec = Vec::new(); let mut iter = m.lines().skip(1); for _ in 0..iter.clone().count() as u32/n { let mut t: Vec = Vec::new(); (0..n).for_each(|_| { t.push(iter.next().unwrap().split_whitespace() .map(|y| y.parse::().unwrap()).collect:..
💻 Baekjoon Deepening 1 Stage Sprout Question_Link - 25083 Basic Code fn main(){ print!(r#" ,r'"7 r`-_ ,' ,/ \. ". L_r' `~\/ | |"#); } King, Queen, Rook, Bishop, Knight, Pawn Question_Link - 3003 Basic Code use std::io; fn main() { const P: [i32; 6] = [1, 1, 2, 2, 2, 8]; let mut buf = String::new(); io::stdin().read_line(&mut buf).unwrap(); for (i, v) in buf.split_whitespace().map(|x|..
💻 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 ..
💻 Baekjoon One Dimensional Array Stage Count Number Question_Link - 10807 Basic Code use std::io; fn input() -> String { let mut buf = String::new(); io::stdin().read_line(&mut buf).unwrap(); buf.pop(); buf } fn main() { let mut n: Vec = Vec::new(); let mut v = 0; (0..3).for_each( |x| { let s = input(); if x==1 { n = s.split(" ").map( |y| y.parse().unwrap() ).collect(); } else if x==2 { v = s.pa..